Android ExpandableListView的使用 类似QQ好友列表

jerry Android 2015年11月23日 收藏

ExpandableListView效果相当于一个分组的ListView,点击组,会收缩或展开该组下的子元素,如下图:

ExpandableListView的用法与ListView和GridView,Gallery 类似,都是通过一个Adapter来显示.

main.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="fill_parent"
  4. android:layout_height="fill_parent">
  5. <ExpandableListView android:id="@+id/elv" android:indicatorRight="160dp"
  6. android:layout_width="fill_parent" android:layout_height="fill_parent">
  7. </ExpandableListView>
  8. <!-- indicatorRight 设置那个小图标右边缘与 ExpandableListView左边缘的间距-->
  9. </LinearLayout>

ElvAdapter.java

  1. package com.test;
  2. import java.util.ArrayList;
  3. import android.content.Context;
  4. import android.view.View;
  5. import android.view.ViewGroup;
  6. import android.widget.BaseExpandableListAdapter;
  7. import android.widget.ExpandableListView;
  8. import android.widget.TextView;
  9. import android.widget.LinearLayout.LayoutParams;
  10. public class ElvAdapter extends BaseExpandableListAdapter
  11. {
  12. ArrayList<ElvObject> objs;
  13. Context context;
  14. ElvAdapter(Context context,ArrayList<ElvObject> objs)
  15. {
  16. this.objs=objs;
  17. this.context=context;
  18. }
  19. @Override
  20. public Object getChild(int groupPosition, int childPosition)
  21. {
  22. // TODO Auto-generated method stub
  23. return objs.get(groupPosition).childs.get(childPosition);
  24. }
  25. @Override
  26. public long getChildId(int groupPosition, int childPosition)
  27. {
  28. // TODO Auto-generated method stub
  29. return childPosition;
  30. }
  31. @Override
  32. public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent)
  33. {
  34. //子元素的View
  35. TextView tv=new TextView(context);
  36. tv.setText(objs.get(groupPosition).childs.get(childPosition));
  37. tv.setLayoutParams(new ExpandableListView.LayoutParams(ExpandableListView.LayoutParams.FILL_PARENT,ExpandableListView.LayoutParams.WRAP_CONTENT));
  38. return tv;
  39. }
  40. @Override
  41. public int getChildrenCount(int groupPosition)
  42. {
  43. // TODO Auto-generated method stub
  44. return objs.get(groupPosition).childs.size();
  45. }
  46. @Override
  47. public Object getGroup(int groupPosition)
  48. {
  49. // TODO Auto-generated method stub
  50. return objs.get(groupPosition);
  51. }
  52. @Override
  53. public int getGroupCount()
  54. {
  55. // TODO Auto-generated method stub
  56. return objs.size();
  57. }
  58. @Override
  59. public long getGroupId(int groupPosition)
  60. {
  61. // TODO Auto-generated method stub
  62. return groupPosition;
  63. }
  64. @Override
  65. public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent)
  66. {
  67. //分组的View
  68. TextView tv=new TextView(context);
  69. tv.setText(objs.get(groupPosition).groupName);
  70. ExpandableListView.LayoutParams params=new ExpandableListView.LayoutParams(ExpandableListView.LayoutParams.FILL_PARENT,60);
  71. tv.setLayoutParams(params);
  72. return tv;
  73. }
  74. @Override
  75. public boolean hasStableIds()
  76. {
  77. // TODO Auto-generated method stub
  78. return false;
  79. }
  80. @Override
  81. public boolean isChildSelectable(int groupPosition, int childPosition)
  82. {
  83. // TODO Auto-generated method stub
  84. return true;
  85. }
  86. }
  87.  
  88. class ElvObject{
  89. String groupName="";
  90. ArrayList<String> childs=new ArrayList<String>();
  91. ElvObject(String groupName,ArrayList<String> childs)
  92. {
  93. this.groupName=groupName;
  94. this.childs=childs;
  95. }
  96. }

注意下面还有一个ElvObject类

主程序AndroidTestActivity.java

  1. package com.test;
  2. import java.util.ArrayList;
  3. import android.app.Activity;
  4. import android.os.Bundle;
  5. import android.widget.ExpandableListView;
  6. public class AndroidTestActivity extends Activity
  7. {
  8. /** Called when the activity is first created. */
  9. ExpandableListView elv;
  10. ElvAdapter adapter;
  11. ArrayList<ElvObject> objs=new ArrayList<ElvObject>();
  12. @Override
  13. public void onCreate(Bundle savedInstanceState)
  14. {
  15. super.onCreate(savedInstanceState);
  16. setContentView(R.layout.main);
  17. elv=(ExpandableListView)findViewById(R.id.elv);
  18. adapter=new ElvAdapter(this,objs);
  19. elv.setAdapter(adapter);
  20. ArrayList<String> list=new ArrayList<String>();
  21. list.add("aaa");
  22. list.add("bbb");
  23. list.add("ccc");
  24. objs.add(new ElvObject("英文",list));
  25. ArrayList<String> list2=new ArrayList<String>();
  26. list2.add("111");
  27. list2.add("222");
  28. list2.add("333");
  29. list2.add("444");
  30. objs.add(new ElvObject("数字",list2));
  31. }
  32. }