SimpleExpandableListAdapter(分组List)参数详解

来源:互联网 发布:淘宝主视频制作软件 编辑:程序博客网 时间:2024/05/18 14:26

SimpleExpandableListAdapter(分组List)注意事项

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.SimpleExpandableListAdapter;/* * 创建一个Activity,继承ExpandableListAcitivty */public class MainActivity extends ExpandableListActivity {/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.main);//定义一个List,该List对象为一级条目提供数据List<Map<String, String>> groups = new ArrayList<Map<String, String>>();Map<String, String> group1 = new HashMap<String, String>();group1.put("group", "group1");Map<String, String> group2 = new HashMap<String, String>();group2.put("group", "group2");groups.add(group1);groups.add(group2);//定义一个List,该List对象为第一个一级条目提供二级条目的数据List<Map<String, String>> child1 = new ArrayList<Map<String, String>>();Map<String, String> child1Data1 = new HashMap<String, String>();child1Data1.put("child", "child1Data1");child1.add(child1Data1);Map<String,String> child1Data2 = new HashMap<String,String>();child1Data2.put("child", "child1Data2");child1.add(child1Data2);//定义一个List,该List对象为第二个一级条目提供二级条目的数据List<Map<String, String>> child2 = new ArrayList<Map<String, String>>();Map<String, String> child2Data = new HashMap<String, String>();child2Data.put("child", "child2Data");child2.add(child2Data);//定义一个List,该List对象用来存储所有的二级条目的数据//数据分组的依据是childs.add()的添加顺序。//如将49、50行交换顺序,则第一组显示child2,第二组显示child1。List<List<Map<String, String>>> childs = new ArrayList<List<Map<String, String>>>();childs.add(child1);childs.add(child2);//生成一个SimpleExpandableListAdapter对象//1.context//2.一级条目的数据//3.用来设置一级条目样式的布局文件//4.指定一级条目数据的key//5.指定一级条目数据显示控件的id//6.指定二级条目的数据//7.用来设置二级条目样式的布局文件//8.指定二级条目数据的key//9.指定二级条目数据显示控件的idSimpleExpandableListAdapter sela = new SimpleExpandableListAdapter(this, groups, R.layout.group, new String[] { "group" },new int[] { R.id.groupTo }, childs, R.layout.child,new String[] { "child" }, new int[] { R.id.childTo });//将SimpleExpandableListAdapter对象设置给当前的ExpandableListActivitysetListAdapter(sela);}}


0 0