java - 如何在android中的可扩展 ListView 组和 subview 中加载json数据?

标签 java javascript android jquery

我想在android中的json中创建可扩展 ListView 中的组和子项?如何将json数据添加到可扩展 ListView 组和子项

最佳答案

您可以使用自定义适配器类来创建可扩展的 ListView 。创建一个名为 ExpandableListAdapter.java 的新类文件,并从 BaseExpandableListAdapter 扩展它。此类提供了呈现此类 ListView 所需的方法。

public class ExpandableListAdapter extends BaseExpandableListAdapter {

private Context _context;
private List<String> _listDataHeader; // header titles
// child data in format of header title, child title
private HashMap<String, List<String>> _listDataChild;

public ExpandableListAdapter(Context context, List<String> listDataHeader,
        HashMap<String, List<String>> listChildData) {
    this._context = context;
    this._listDataHeader = listDataHeader;
    this._listDataChild = listChildData;
 }

@Override
public Object getChild(int groupPosition, int childPosititon) {
    return this._listDataChild.get(this._listDataHeader.get(groupPosition))
            .get(childPosititon);
 }

@Override
public long getChildId(int groupPosition, int childPosition) {
    return childPosition;
 }

@Override
public View getChildView(int groupPosition, final int childPosition,
        boolean isLastChild, View convertView, ViewGroup parent) {

    final String childText = (String) getChild(groupPosition, childPosition);

    if (convertView == null) {
        LayoutInflater infalInflater = (LayoutInflater) this._context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = infalInflater.inflate(R.layout.list_item, null);
     }

    TextView txtListChild = (TextView) convertView
            .findViewById(R.id.lblListItem);

    txtListChild.setText(childText);
    return convertView;
 }

@Override
public int getChildrenCount(int groupPosition) {
    return this._listDataChild.get(this._listDataHeader.get(groupPosition))
            .size();
 }

@Override
public Object getGroup(int groupPosition) {
    return this._listDataHeader.get(groupPosition);
 }

@Override
public int getGroupCount() {
    return this._listDataHeader.size();
 }

@Override
public long getGroupId(int groupPosition) {
    return groupPosition;
 }

@Override
public View getGroupView(int groupPosition, boolean isExpanded,
        View convertView, ViewGroup parent) {
    String headerTitle = (String) getGroup(groupPosition);
    if (convertView == null) {
        LayoutInflater infalInflater = (LayoutInflater) this._context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = infalInflater.inflate(R.layout.list_group, null);
     }

    TextView lblListHeader = (TextView) convertView
            .findViewById(R.id.lblListHeader);
    lblListHeader.setTypeface(null, Typeface.BOLD);
    lblListHeader.setText(headerTitle);

    return convertView;
 }

@Override
public boolean hasStableIds() {
    return false;
 }

@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
    return true;
  }
}

点击此链接:http://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/

关于java - 如何在android中的可扩展 ListView 组和 subview 中加载json数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19629361/

相关文章:

javascript - 将 URL 传递到表单字段的 Bookmarklet

javascript - 使用 JavaScript 将数据写入 CSV 文件

android - 如何将 base64 转换为 pdf React-Native

android - Sony SmartWatch 3 (SWR50) 不再返回 Sensor.TYPE_LINEAR_ACCELERATION

Java 类加载器和内存管理

java - 从 java -jar 运行 spring boot 应用程序时未提交事务

java - apache-cassandra 0.8.2 的问题

java - 为什么 java ref vars 调用基于实际对象的方法,而变量基于 ref 变量类型?

javascript - 尝试将变量加 1,但它似乎将自身加倍

android - java.io.IOException : Unexpected crypto version 0 异常