在上面几次学习中,我们学习了如何在一个有限的屏幕上加载多页的信息,除此之外还可以通过隐藏-展开的方式,在屏幕有限的空间内包含更多的现象,如图所示,这就是ExpandableListView。
ExpandableListView,具有树的结构:Groups和childrens。下面我们通过一个简单的例子来学习,这个例子的数据不再采用String[],而是采用另一个常见的HashMap方式,顺带复习一下。
public class Chapter9Tutorial4 extends ExpandableListActivity{
private static final String NAME="NAME"; //这是HashMap的Key名称
private static final String IS_EVEN = "IS_EVEN";//这是HashMap的Key名称
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//步骤1:设置ExpandableListActivity的Group和Chlid的数据
//在这个例子中,Group的单元格式为HashMap所以其格式为List<单元格式
//Child中最基础的item格式也为HashMap,因此每一个Group中包含的child的格式为List<基础单元格式>,而所有的Group又是List,因此所有的child的格式为List<每个Group的child格式>,即List>
List List>> childData = new ArrayList>>();
for(int i = 0 ; i<6 ; i++){
Map curGroupMap = new HashMap();
groupData.add(curGroupMap);
curGroupMap.put(NAME, "Group " +i);
curGroupMap.put(IS_EVEN, "Hello " + i);
List> children = new ArrayList>();
for(int j = 0; j <3; j++){
Map curChildMap = new HashMap();
children.add(curChildMap);
curChildMap.put(NAME, "Child " + j + " for group " + i);
curChildMap.put(IS_EVEN, "From Group " + i + " Hello my friend!");
}
childData.add(children);
}
//步骤2:设置ExpandableList的adapter,ExpandableListAdapter是个接口,对于Map方式可使用SimpleExpandableListAdapter
ExpandableListAdapter mAdapter = new SimpleExpandableListAdapter(
this,
groupData,
android.R.layout.simple_expandable_list_item_1,
new String[]{NAME,IS_EVEN},
new int[] {android.R.id.text1,android.R.id.text2},
childData,
android.R.layout.simple_expandable_list_item_2,
new String[]{NAME,IS_EVEN},
new int[] {android.R.id.text1,android.R.id.text2}
);
setListAdapter(mAdapter);
}
//步骤3:触发处理,包括有:OnChildClickListener,OnGroupClickListener,OnGroupCollapseListener和OnGroupExpandListener。在这个例子中每个child的View的类型是TwoLineListItem
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
Log.d("WEI","Click: [" + groupPosition + "," + childPosition + "] ");
return super.onChildClick(parent, v, groupPosition, childPosition, id);
}
}