ExpandableListActivity和SimpleExpandableListAdapter的基本使用详解.doc_第1页
ExpandableListActivity和SimpleExpandableListAdapter的基本使用详解.doc_第2页
ExpandableListActivity和SimpleExpandableListAdapter的基本使用详解.doc_第3页
ExpandableListActivity和SimpleExpandableListAdapter的基本使用详解.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

下面通过我自己的学习来总结一下,ExpandableListActivity和SimpleExpandableListAdapter的使用。当我们想要给客户展示一组数据(这里我们之前是使用ListActivity),但数据里面又进行了分组,这就不能使用ListActivity,就要用我们下面要讲的ExpandableListActivity。那请问:ExpandableListActivity和SimpleExpandableListAdapter两者有什么关系了?这就好像ListActivity和SimpleListAdapter一样,SimpleExpandableListAdapter为ExpandableListActivity提供数据。好的,下面就来讲解ExpandableListActivity和SimpleExpandableListAdapte的使用步骤:1. 在布局文件当中声明ExpandableActivity控件:Main.xml:2. 在layout文件夹当中,新建group.xml,为一级条目声明样式Gruop.xml: 3. 在layout文件夹当中,新建child.xml,为二级条目声明样式Child.xml: 4. 创建一个Activity,继承ExpandableListActivity:代码具体如下:MainActivity.java: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对象为一级条目提供数据ListMap groups = new ArrayListMap();Map group1 = new HashMap();group1.put(group, group1);Map group2 = new HashMap();group2.put(group, group2);groups.add(group1);groups.add(group2);/定义一个List,该List对象为第一个一级条目提供二级条目的数据ListMap child1 = new ArrayListMap();Map child1Data1 = new HashMap();child1Data1.put(child, child1Data1);child1.add(child1Data1);Map child1Data2 = new HashMap();child1Data2.put(child, child1Data2);child1.add(child1Data2);/定义一个List,该List对象为第二个一级条目提供二级条目的数据ListMap child2 = new ArrayListMap();Map child2Data = new HashMap();child2Data.put(child, child2Data);child2.add(child2Data);/定义一个List,该List对象用来存储所有的二级条目的数据ListListMap childs = new ArrayListListMap();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 Strin

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论