我正在尝试使用ExpandableListView
创建SimpleExpandableListAdapter
(我知道我可以自己扩展一个新的适配器,但我想尝试使用simpleExapndableListAdapter)。
现在,当我尝试创建SimpleExpandableListAdapter
的新实例时遇到问题。
事件我读了references,我不确定参数的含义特别是groupData
和childData
。
虽然我知道我必须创建Map
列表和list of Map
列表,但应该在那里放置哪些数据?如何组织他们?
例如,这是我要显示的数据,如何组织它们?
++Development Team
John
Bill
++Data Process Team
Alice
David
BTW,这是否意味着我必须为组和子视图创建两个布局?
我一遍又一遍地搜索教程,但我无法理解。
我希望有人可以解释一下。
答案 0 :(得分:7)
这是您想要的简单示例,它将清除您的所有疑虑..
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项目
你的主要活动.. 希望这会有所帮助......
答案 1 :(得分:0)
您的要求确实有很多例子!
无论如何,你可能想要查看这个博客,如果你还没有。
“这是否意味着我必须为组和子视图创建两个布局?”
当然,是的! ,我的意思是你可以选择不创建布局,但是这又是你的选择,这与ExpandableList的关系很少
GroupList理想情况下将包含一个团队列表List = {“开发团队”,“数据处理团队”}(这将主要用于显示目的,如计算列表的高度等。)
ChildList理想情况下将包含列表列表(列表的Hashmap)
的Hashmap&GT; =
开发团队: List = {“John”,“Bill”} 数据处理团队: List = {“John”,“Bill”}
答案 2 :(得分:0)
您需要两个列表或数组。
家长(开发团队和数据处理团队)
父母列表是常规列表,您必须添加所有父项,即顶级项目。
<强> Childrean 强>
父和子列表之间的主要区别在于,子列表是列表列表。
因此,例如,如果你需要父母的孩子,你会做这样的事情
children.get(parentPosition)
如果您需要特定的孩子
children.get(parentPosition).get(childPosition)
Here您可以使用BaseExpandableListAdapter