我正在尝试使用ExpandableListView创建SimpleExpandableListAdapter(我知道自己可以扩展新的适配器,但是我想尝试simpleExapndableListAdapter)。

现在,当我尝试创建SimpleExpandableListAdapter的新实例时遇到了问题。

如果我读了references,我不确定参数到底是什么意思,尤其是groupDatachildData

虽然我知道我必须创建一个Map列表和一个list of Map列表,但是应该在其中放置哪些数据?如何组织它们?

例如,这是我要显示的数据,如何组织它们?

++Development Team
  John
  Bill
++Data Process Team
  Alice
  David

顺便说一句,这是否意味着我必须为组和 subview 创建两个布局?

我已经用谷歌搜索并一次又一次地阅读了本教程,但我听不懂。

我希望有人能给马解释。

最佳答案

这是您想要的简单示例,它将清除您的所有疑问。

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import android.app.ExpandableListActivity;
import android.os.Bundle;
import android.widget.ExpandableListAdapter;
import android.widget.SimpleExpandableListAdapter;

public class SimpleExpandableListExampleActivity extends ExpandableListActivity {
    private static final String NAME = "NAME";

    private ExpandableListAdapter mAdapter;

    private String group[] = {"Development" , "Data Process Team"};
    private String[][] child = { { "John", "Bill" }, { "Alice", "David" } };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        List<Map<String, String>> groupData = new ArrayList<Map<String, String>>();
        List<List<Map<String, String>>> childData = new ArrayList<List<Map<String, String>>>();
        for (int i = 0; i < group.length; i++) {
            Map<String, String> curGroupMap = new HashMap<String, String>();
            groupData.add(curGroupMap);
            curGroupMap.put(NAME, group[i]);

            List<Map<String, String>> children = new ArrayList<Map<String, String>>();
            for (int j = 0; j < child[i].length; j++) {
                Map<String, String> curChildMap = new HashMap<String, String>();
                children.add(curChildMap);
                curChildMap.put(NAME, child[i][j]);
            }
            childData.add(children);
        }

        // Set up our adapter
        mAdapter = new SimpleExpandableListAdapter(this, groupData,
                android.R.layout.simple_expandable_list_item_1,
                new String[] { NAME }, new int[] { android.R.id.text1 },
                childData, android.R.layout.simple_expandable_list_item_2,
                new String[] { NAME }, new int[] { android.R.id.text1 });
        setListAdapter(mAdapter);
    }

}

您要做的就是
  • 使用SimpleExpandableListExampleActivity创建一个Android项目,
    您的主要 Activity ..
  • 复制粘贴该 Activity 中给定的代码。
  • 就是这样。运行您的代码...

  • 希望这可以帮助...

    09-07 23:59