一、大体步骤
1.整体布局main.xml
2. 一级标题布局group.xml
3.二级标题布局child.xml
4. java代码
二、具体实施
1.main.xml
http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.guoxing.qqq.MainActivity">
//垂直线性布局
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:layout_editor_absoluteX="8dp"
tools:layout_editor_absoluteY="8dp">
//可扩展列表
android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="408dp"
android:drawSelectorOnTop="false"/>
android:id="@+id/textView"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:textSize="30dp"
android:gravity="right"
android:text="GuoXing"/>
2.group.xml
http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:id="@+id/groupto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="10px"
android:paddingLeft="60px"
android:paddingBottom="10px"
android:textSize="30sp"
android:text="No data"/>
3.child.xml
http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:id="@+id/childto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="25sp"/>
4.java代码
packagecom.example.guoxing.qqq;
importandroid.app.ExpandableListActivity;
importandroid.os.Bundle;
importandroid.widget.SimpleExpandableListAdapter;
importjava.util.ArrayList;
importjava.util.HashMap;
importjava.util.List;
importjava.util.Map;
public classMainActivityextendsExpandableListActivity {
List>groups;//定义一个List,存放所有的一级标题数据
List>>childs;//定义一个list,存放所有的二级标题需要的数据
@Override
protected voidonCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
loadGroupData();//加载一级条目需要的数据
loadChildData();//加载二级条目需要的数据
//新建一个SimpleExpandableListAdapter对象
SimpleExpandableListAdapter sela =newSimpleExpandableListAdapter(
this,//context
groups,//一级条目需要的数据
R.layout.group,//用来设置一级条目样式的布局文件
newString[]{"group"},//指定一级条目数据的key
new int[]{R.id.groupto},//指定一级条目数据显示控件的id
childs,//二级条目需要的数据
R.layout.child,//用来设置二级条目样式的布局文件
newString[]{"child"},//指定二级条目数据的key
new int[]{R.id.childto}//指定二级条目数据显示控件的id
);
//为当前的ExpandableListActivity设置适配器
setListAdapter(sela);
}
//完成加载一级条目数据
public voidloadGroupData(){
groups=newArrayList>();
//向下一级标题添加数据
Map group1 =newHashMap();
group1.put("group","嘻嘻");
Map group2 =newHashMap();
group2.put("group","哈哈");
Map group3 =newHashMap();
group3.put("group","嘿嘿");
groups.add(group1);
groups.add(group2);
groups.add(group3);
}
//加载二级条目数据
public voidloadChildData(){
childs=newArrayList>>();
//定义一个List,存放第一个一级标题需要的二级标题的数据
List> child1 =newArrayList>();
Map child1Data1 =newHashMap();
child1Data1.put("child","赵");
child1.add(child1Data1);//添加到列表中
Map child1Data2 =newHashMap();
child1Data2.put("child","钱");
child1.add(child1Data2);//添加到列表中
//定义一个List,存放第二个一级标题需要的二级标题的数据
List> child2 =newArrayList>();
Map child2data =newHashMap();
child2data.put("child","孙");
child2.add(child2data);
//向二级标题添加数据
List> child3 =newArrayList>();
Map child3data =newHashMap();
child3data.put("child","李");
child3.add(child3data);
childs.add(child1);
childs.add(child2);
childs.add(child3);
}
}