【问题标题】:How to load json data in expandable listview group and child in android?如何在 android 的可扩展列表视图组和子项中加载 json 数据?
【发布时间】:2013-10-28 07:40:06
【问题描述】:

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

【问题讨论】:

    标签: java javascript android jquery


    【解决方案1】:

    您可以使用自定义适配器类来创建可扩展的列表视图。创建一个名为 ExpandableListAdapter.java 的新类文件并从 BaseExpandableListAdapter 扩展它。此类提供渲染此类列表视图所需的方法。

    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/

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-03-19
      • 2017-04-02
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多