gpt4 book ai didi

android - SimpleExpandableListAdapter 的数据应该如何组织

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:26:56 25 4
gpt4 key购买 nike

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

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

事件我读了references ,我不太确定这些参数是什么意思,尤其是 groupDatachildData

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

比如我要展示的数据是这样的,怎么组织呢?

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

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

我用谷歌搜索并一遍又一遍地阅读教程,但我无法理解。

希望有人能给ma解释一下。

最佳答案

这是您想要的简单示例,它将消除您所有的疑虑..

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 中给出的代码。
  • 就是这样......运行你的代码......

希望这有助于...

关于android - SimpleExpandableListAdapter 的数据应该如何组织,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18350824/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com