`

Android ExpandableListActivity 学习笔记

 
阅读更多

ExpandableListActivity:

An activity that displays an expandable list of items by binding to a data source implementing the ExpandableListAdapter, and exposes event handlers when the user selects an item.

即,可扩展的list,单击某个item后,又可显示一个子list。它的数据通过绑定到ExpandableListAdapter或者ExpandableListAdapter的子类上。

示例1—通过SimpelExpandableListAdapter绑定数据:

注意:android.R.layout.simple_expandable_list_item_1:表示只显示一个TextView的数据,即R.id.text1

android.R.layout.simple_expandable_list_item_2:表示显示二个TextView的数据,即R.id.text1,R.id,text2

android.R.layout.simple_expandable_list_item_2.xml(在R.layout中)文件的布局如下:

示例2—通过SimpleCussorTreeAdapter绑定数据:

示例3—通过BaseExpandableListAdapter绑定数据:

  1. publicclassExpandableList1extendsExpandableListActivity{
  2. ExpandableListAdaptermAdapter;
  3. @Override
  4. publicvoidonCreate(BundlesavedInstanceState){
  5. super.onCreate(savedInstanceState);
  6. //Setupouradapter
  7. mAdapter=newMyExpandableListAdapter();
  8. setListAdapter(mAdapter);
  9. //registercontextmenu,whenlongclicktheitem,itwillshowadialog
  10. registerForContextMenu(getExpandableListView());
  11. }
  12. @Override
  13. publicvoidonCreateContextMenu(ContextMenumenu,Viewv,ContextMenuInfomenuInfo){
  14. menu.setHeaderTitle("Samplemenu");
  15. menu.add(0,0,0,R.string.expandable_list_sample_action);
  16. }
  17. @Override
  18. publicbooleanonContextItemSelected(MenuItemitem){
  19. ExpandableListContextMenuInfoinfo=(ExpandableListContextMenuInfo)item.getMenuInfo();
  20. Stringtitle=((TextView)info.targetView).getText().toString();
  21. inttype=ExpandableListView.getPackedPositionType(info.packedPosition);
  22. if(type==ExpandableListView.PACKED_POSITION_TYPE_CHILD){
  23. intgroupPos=ExpandableListView.getPackedPositionGroup(info.packedPosition);
  24. intchildPos=ExpandableListView.getPackedPositionChild(info.packedPosition);
  25. Toast.makeText(this,title+":Child"+childPos+"clickedingroup"+groupPos,
  26. Toast.LENGTH_SHORT).show();
  27. returntrue;
  28. }elseif(type==ExpandableListView.PACKED_POSITION_TYPE_GROUP){
  29. intgroupPos=ExpandableListView.getPackedPositionGroup(info.packedPosition);
  30. Toast.makeText(this,title+":Group"+groupPos+"clicked",Toast.LENGTH_SHORT).show();
  31. returntrue;
  32. }
  33. returnfalse;
  34. }
  35. /**
  36. *AsimpleadapterwhichmaintainsanArrayListofphotoresourceIds.
  37. *Eachphotoisdisplayedasanimage.Thisadaptersupportsclearingthe
  38. *listofphotosandaddinganewphoto.
  39. *
  40. */
  41. publicclassMyExpandableListAdapterextendsBaseExpandableListAdapter{
  42. //Sampledataset.children[i]containsthechildren(String[])forgroups[i].
  43. privateString[]groups={"PeopleNames","DogNames","CatNames","FishNames"};
  44. privateString[][]children={
  45. {"Arnold","Barry","Chuck","David"},
  46. {"Ace","Bandit","Cha-Cha","Deuce"},
  47. {"Fluffy","Snuggles"},
  48. {"Goldy","Bubbles"}
  49. };
  50. publicObjectgetChild(intgroupPosition,intchildPosition){
  51. returnchildren[groupPosition][childPosition];
  52. }
  53. publiclonggetChildId(intgroupPosition,intchildPosition){
  54. returnchildPosition;
  55. }
  56. publicintgetChildrenCount(intgroupPosition){
  57. returnchildren[groupPosition].length;
  58. }
  59. publicTextViewgetGenericView(){
  60. //LayoutparametersfortheExpandableListView
  61. AbsListView.LayoutParamslp=newAbsListView.LayoutParams(
  62. ViewGroup.LayoutParams.FILL_PARENT,64);
  63. TextViewtextView=newTextView(ExpandableList1.this);
  64. textView.setLayoutParams(lp);
  65. //Centerthetextvertically
  66. textView.setGravity(Gravity.CENTER_VERTICAL|Gravity.LEFT);
  67. //Setthetextstartingposition
  68. textView.setPadding(36,0,0,0);
  69. returntextView;
  70. }
  71. publicViewgetChildView(intgroupPosition,intchildPosition,booleanisLastChild,
  72. ViewconvertView,ViewGroupparent){
  73. TextViewtextView=getGenericView();
  74. textView.setText(getChild(groupPosition,childPosition).toString());
  75. returntextView;
  76. }
  77. publicObjectgetGroup(intgroupPosition){
  78. returngroups[groupPosition];
  79. }
  80. publicintgetGroupCount(){
  81. returngroups.length;
  82. }
  83. publiclonggetGroupId(intgroupPosition){
  84. returngroupPosition;
  85. }
  86. publicViewgetGroupView(intgroupPosition,booleanisExpanded,ViewconvertView,
  87. ViewGroupparent){
  88. TextViewtextView=getGenericView();
  89. textView.setText(getGroup(groupPosition).toString());
  90. returntextView;
  91. }
  92. publicbooleanisChildSelectable(intgroupPosition,intchildPosition){
  93. returntrue;
  94. }
  95. publicbooleanhasStableIds(){
  96. returntrue;
  97. }
  98. }
  99. }
  1. publicclassExpandableList2extendsExpandableListActivity{
  2. privateintmGroupIdColumnIndex;
  3. privateStringmPhoneNumberProjection[]=newString[]{
  4. People.Phones._ID,People.Phones.NUMBER
  5. };
  6. privateExpandableListAdaptermAdapter;
  7. /*
  8. *CursorTreeAdapter'smethod.
  9. *GetstheCursorforthechildrenatthegivengroup
  10. */
  11. @Override
  12. publicvoidonCreate(BundlesavedInstanceState){
  13. super.onCreate(savedInstanceState);
  14. //Queryforpeople
  15. CursorgroupCursor=managedQuery(People.CONTENT_URI,
  16. newString[]{People._ID,People.NAME},null,null,null);
  17. //CachetheIDcolumnindex
  18. mGroupIdColumnIndex=groupCursor.getColumnIndexOrThrow(People._ID);
  19. //Setupouradapter
  20. mAdapter=newMyExpandableListAdapter(groupCursor,
  21. this,
  22. android.R.layout.simple_expandable_list_item_1,
  23. android.R.layout.simple_expandable_list_item_1,
  24. newString[]{People.NAME},//Nameforgrouplayouts
  25. newint[]{android.R.id.text1},
  26. newString[]{People.NUMBER},//Numberforchildlayouts
  27. newint[]{android.R.id.text1});
  28. setListAdapter(mAdapter);
  29. }
  30. publicclassMyExpandableListAdapterextendsSimpleCursorTreeAdapter{
  31. publicMyExpandableListAdapter(Cursorcursor,Contextcontext,intgroupLayout,
  32. intchildLayout,String[]groupFrom,int[]groupTo,String[]childrenFrom,
  33. int[]childrenTo){
  34. super(context,cursor,groupLayout,groupFrom,groupTo,childLayout,childrenFrom,
  35. childrenTo);
  36. }
  37. @Override
  38. protectedCursorgetChildrenCursor(CursorgroupCursor){
  39. //Giventhegroup,wereturnacursorforallthechildrenwithinthatgroup
  40. //Returnacursorthatpointstothiscontact'sphonenumbers
  41. Uri.Builderbuilder=People.CONTENT_URI.buildUpon();
  42. ContentUris.appendId(builder,groupCursor.getLong(mGroupIdColumnIndex));
  43. builder.appendEncodedPath(People.Phones.CONTENT_DIRECTORY);
  44. UriphoneNumbersUri=builder.build();
  45. //ThereturnedCursorMUSTbemanagedbyus,soweuseActivity'shelper
  46. //functionalitytomanageitforus.
  47. returnmanagedQuery(phoneNumbersUri,mPhoneNumberProjection,null,null,null);
  48. }
  49. }
  50. }
  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="vertical">
  6. <TextViewandroid:id="@+id/text1"
  7. android:textSize="16sp"
  8. android:textStyle="bold"
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"/>
  11. <TextViewandroid:id="@+id/text2"
  12. android:textSize="16sp"
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content"/>
  15. </LinearLayout>
  1. publicclassExpandableList3extendsExpandableListActivity{
  2. privatestaticfinalStringNAME="NAME";
  3. privatestaticfinalStringIS_EVEN="IS_EVEN";
  4. privateExpandableListAdaptermAdapter;
  5. @Override
  6. publicvoidonCreate(BundlesavedInstanceState){
  7. super.onCreate(savedInstanceState);
  8. List<Map<String,String>>groupData=newArrayList<Map<String,String>>();
  9. List<List<Map<String,String>>>childData=newArrayList<List<Map<String,String>>>();
  10. for(inti=0;i<20;i++){
  11. Map<String,String>curGroupMap=newHashMap<String,String>();
  12. groupData.add(curGroupMap);
  13. curGroupMap.put(NAME,"Group"+i);
  14. curGroupMap.put(IS_EVEN,(i%2==0)?"Thisgroupiseven":"Thisgroupisodd");
  15. List<Map<String,String>>children=newArrayList<Map<String,String>>();
  16. for(intj=0;j<15;j++){
  17. Map<String,String>curChildMap=newHashMap<String,String>();
  18. children.add(curChildMap);
  19. curChildMap.put(NAME,"Child"+j);
  20. curChildMap.put(IS_EVEN,(j%2==0)?"Thischildiseven":"Thischildisodd");
  21. }
  22. childData.add(children);
  23. }
  24. //Setupouradapter
  25. mAdapter=newSimpleExpandableListAdapter(
  26. this,
  27. groupData,//存储父list的数据
  28. android.R.layout.simple_expandable_list_item_2,//父list的现实方式
  29. newString[]{NAME,IS_EVEN},//父list需要显示的数据
  30. newint[]{android.R.id.text1,android.R.id.text2},//父list的数据绑定到的view
  31. childData,//子list的数据
  32. android.R.layout.simple_expandable_list_item_2,
  33. newString[]{NAME,IS_EVEN},
  34. newint[]{android.R.id.text1,android.R.id.text2}
  35. );
  36. setListAdapter(mAdapter);
  37. }
  38. }
分享到:
评论

相关推荐

    ExpandableListActivity

    `ExpandableListActivity`是Android开发中的一个关键组件,它属于`ListView`的扩展,能够显示可折叠的子列表项,使得用户界面更加有层次感和交互性。在这个主题下,我们将深入探讨`ExpandableListActivity`的工作...

    ExpandableListActivity例子,自动展开

    通过这个例子,开发者可以学习到如何在Android应用中使用`ExpandableListActivity`展示层次结构数据,并通过`Handler`实现动画效果。这在展示具有多级分类的数据时非常有用,例如日历应用的月份和日期、菜单的分类和...

    Android学习笔记(二五): 多信息显示-ExpandableListView的使用.doc

    本篇笔记将深入探讨如何使用ExpandableListView,以及如何用HashMap作为数据源。 首先,ExpandableListView的核心在于它的数据模型,它由两部分组成:Groups(父项)和Childrens(子项)。每个Group可以包含多个...

    ExpandableListActivity和SimpleExpandableListAdapter的基本使用详解

    `ExpandableListActivity`是Android框架中用于显示层次结构数据的Activity。与传统的`ListActivity`不同,它能够展示多层级的数据,即可以有父项和子项的概念。用户可以通过点击父项来展开或折叠其子项列表,非常...

    Mars Android视频教程的笔记

    本笔记集合了"Mars Android视频教程"的主要知识点,旨在帮助学习者回顾和巩固课程中的核心概念。以下是根据文件名整理出的各章节内容详解: 1. **Animations.doc** - 动画是Android应用中提升用户体验的关键元素。...

    android开发笔记

    ### Android开发笔记知识点详解 #### 第1章 Android简介 **1.1 Android与iPhone** - **Android**: 是一种基于Linux内核(不包含GNU组件)的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板...

    android安卓笔记

    ### Android 安卓笔记知识点详解 #### Android—基础 ##### 基础—概念 - **控件类之父**:`View`是所有控件的基类,无论是简单的按钮还是复杂的列表视图,都是从这个类派生出来的。 - **基准线**:在英文书写中,...

    PreferenceActivity和ExpandableListActivity的使用

    PreferenceActivity和ExpandableListActivity的使用,详细了解请移步:http://blog.csdn.net/zxc514257857/article/details/77773001

    android 的类似于QQ分组的二级列表

    * @see android.app.ExpandableListActivity#onCreateContextMenu(android.view.ContextMenu, android.view.View, android.view.ContextMenu.ContextMenuInfo) */ @Override public void onCreateContextMenu...

    Android仿QQ好友列表实现列表收缩与展开

    import android.app.ExpandableListActivity; import android.os.Bundle; public class MainActivity extends ExpandableListActivity { @Override protected void onCreate(Bundle savedInstanceState) { super...

    Android-ExpandableListView制作时间轴-TimeLine

    在Android中,我们可以使用`ExpandableListActivity`或者普通的`Activity`配合`ExpandableListView`进行布局。数据通常由`ExpandableListAdapter`管理,这个适配器需要实现`BaseExpandableListAdapter`接口。 在...

    android学习实例

    Android控件下拉框,单选按钮,复选框,自动补全,日期控件(支持显示格式:年月,年月日,月日),LauncherActivity的使用,ExpandableListActivity实现二级下拉列表,并且在列表项右边加自定义的图片,实现只展开一个菜单的功能...

    android的ExpandableListView组件.doc

    `ExpandableListView`通常与`ExpandableListActivity`一起使用,就像`ListActivity`与`ListView`的关系一样。 首先,我们需要创建一个包含`ExpandableListView`的布局。在`main.xml`中,你可以看到以下代码: ```...

    android列表控件实现展开、收缩功能

    在我们的示例代码中,我们创建了一个 ActivityMain 类,该类继承自 ExpandableListActivity,并实现了 onCreate()、onCreateContextMenu() 和 onContextItemSelected() 等方法。这些方法负责初始化列表控件、创建上...

    Android支持展开和收缩功能的列表控件[汇编].pdf

    在Android应用开发中,`ExpandableListView`是一个非常有用的控件,它允许用户展示一个可折叠/展开的列表,这种列表通常用于显示层次结构的数据,如目录结构、菜单或者RSS阅读器中的文章分类。在这个例子中,我们...

    Android应用源码之expandableList1_expandableList.zip

    在Android开发中,ExpandableListView是一个非常重要的控件,它允许用户展示数据集,并且以可...这不仅涉及到基本的UI布局,还涵盖了数据处理、事件监听和性能优化等多个方面,对于Android应用开发有着重要的学习价值。

    Android 个人理财工具三:添加账单页面 上

    在Android应用开发中,创建一个个人理财工具是一个实用且具有挑战性的任务。本文将探讨如何在这样的工具中实现添加账单页面,这是一个关键功能,允许用户记录他们的收入和支出。在这一部分,我们将关注界面设计、...

    分享Android中ExpandableListView控件使用教程

    在Android开发中,`ExpandableListView` 是一个非常实用的控件,它可以显示具有扩展功能的列表,即每个条目可以展开以显示更多的子条目,通常用于构建具有层级结构的数据展示。本教程将深入讲解如何在Android应用中...

    Android ExpandableListView展开列表控件使用实例

    接下来是关键的Java代码,通常继承自`ExpandableListActivity`或者自定义的`BaseExpandableListAdapter`。这里,`ExpandActivity`类负责设置`ExpandableListView`的数据源和适配器。`onCreate`方法是初始化的关键点...

    ExpandableListView实现手风琴效果

    (2)第二种方法则是创建一个Activity继承自ExpandableListActivity,而后通过getExpandableListView()方法可获得一个ExpandableListView对象。 第二种方法仅适用于一个页面中只有一个ExpandableListView的情况。...

Global site tag (gtag.js) - Google Analytics