Android UI控件ExpandableListView基本用法详解

ExpandableListView介绍 

ExpandableListView的引入 

ExpandableListView可以显示一个视图垂直滚动显示两级列表中的条目,这不同于列表视图(ListView)。ExpandableListView允许有两个层次:一级列表中有二级列表。
 比如在手机设置中,对于分类,有很好的效果。手机版QQ也是这样的效果。

使用ExpandableListView的整体思路

(1)给ExpandableListView设置适配器,那么必须先设置数据源。

(2)数据源,就是此处的适配器类ExpandableAdapter,此方法继承了BaseExpandableListAdapter,需要重写里面的10个方法。
 数据源中,用到了自定义的View布局,此时根据自己的需求,来设置组和子项的布局样式。
 getChildView()和getGroupView()方法设置自定义布局。

(3)数据源设置好,直接给ExpandableListView.setAdapter()即可实现此收缩功能。

ExpandableListView的完整代码实现
 (1)activity_main.xml:在里面放置一个ExpandableListView控件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context="com.smyhvae.expandablelistviewdemo.MainActivity">

 <ExpandableListView
  android:id="@+id/expandableListView"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  />

</RelativeLayout>

(2)item_group.xml:一级列表的item的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#cccccc"
    android:orientation="horizontal">

 <TextView
  android:id="@+id/tv_group"
  android:layout_width="wrap_content"
  android:layout_height="30dp"
  android:gravity="center"
  android:text="group text"
  android:textColor="#000000"
  />

</LinearLayout>

(3)item_child.xml:二级列表的item的布局

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="horizontal">

 <ImageView
  android:id="@+id/iv_child"
  android:layout_width="30dp"
  android:layout_height="30dp"
  android:src="@mipmap/ic_launcher"/>

 <TextView
  android:id="@+id/tv_child"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="item text"
  android:textColor="#000000"/>

</LinearLayout>

(4)MainActivity.java:

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.ImageView;
import android.widget.TextView;

public class MainActivity extends Activity {

 //View
 private ExpandableListView expandableListView;

 //Model:定义的数据
 private String[] groups = {"A", "B", "C"};

 //注意,字符数组不要写成{{"A1,A2,A3,A4"}, {"B1,B2,B3,B4,B5"}, {"C1,C2,C3,C4"}}
 private String[][] childs = {{"A1", "A2", "A3", "A4"}, {"A1", "A2", "A3", "B4"}, {"A1", "A2", "A3", "C4"}};

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  expandableListView = (ExpandableListView) findViewById(R.id.expandableListView);

  expandableListView.setAdapter(new MyExpandableListView());

 }

 //为ExpandableListView自定义适配器
 class MyExpandableListView extends BaseExpandableListAdapter {

  //返回一级列表的个数
  @Override
  public int getGroupCount() {
   return groups.length;
  }

  //返回每个二级列表的个数
  @Override
  public int getChildrenCount(int groupPosition) { //参数groupPosition表示第几个一级列表
   Log.d("smyhvae", "-->" + groupPosition);
   return childs[groupPosition].length;
  }

  //返回一级列表的单个item(返回的是对象)
  @Override
  public Object getGroup(int groupPosition) {
   return groups[groupPosition];
  }

  //返回二级列表中的单个item(返回的是对象)
  @Override
  public Object getChild(int groupPosition, int childPosition) {
   return childs[groupPosition][childPosition]; //不要误写成groups[groupPosition][childPosition]
  }

  @Override
  public long getGroupId(int groupPosition) {
   return groupPosition;
  }

  @Override
  public long getChildId(int groupPosition, int childPosition) {
   return childPosition;
  }

  //每个item的id是否是固定?一般为true
  @Override
  public boolean hasStableIds() {
   return true;
  }

  //【重要】填充一级列表
  @Override
  public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {

   if (convertView == null) {
    convertView = getLayoutInflater().inflate(R.layout.item_group, null);
   } else {

   }
   TextView tv_group = (TextView) convertView.findViewById(R.id.tv_group);
   tv_group.setText(groups[groupPosition]);
   return convertView;
  }

  //【重要】填充二级列表
  @Override
  public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {

   if (convertView == null) {
    convertView = getLayoutInflater().inflate(R.layout.item_child, null);
   }

   ImageView iv_child = (ImageView) convertView.findViewById(R.id.iv_child);
   TextView tv_child = (TextView) convertView.findViewById(R.id.tv_child);

   //iv_child.setImageResource(resId);
   tv_child.setText(childs[groupPosition][childPosition]);

   return convertView;
  }

  //二级列表中的item是否能够被选中?可以改为true
  @Override
  public boolean isChildSelectable(int groupPosition, int childPosition) {
   return true;
  }
 }

}

注:请自行完成ConvertView和ViewHolder的优化。

工程文件:(Android Studio 2.1)http://xiazai.jb51.net/201609/yuanma/AndroidExpandableListView(jb51.net).rar

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android ExpandableListView长按事件的完美解决办法

    关于ExpandableListView长按事件处理,网上很多都是使用将上下文菜单注册到ExpandableListView上实现长按事件. 这样做弊端显而易见,不够灵活,不能分别对父项.子项.父项之间.子项之间弹出内容做区分.下面来说我的解决方法,方法有点投机取巧.首先说明一点,使用我这种方法必须使用自定义的BaseExpandableListAdapter,至于为什么,具体后面讲到. ExpandableListView本身有继承自AdapterView的setOnItemLongClick

  • Android之IphoneTreeView带组指示器的ExpandableListView效果

    之前实现过一次这种效果的ExpandableListView:http://www.jb51.net/article/38482.htm,带效果比较挫,最近,在参考联系人源码PinnedHeaderListView,以及网上各位大侠的源码,封装了一个效果最好,而且使用最简单的IphoneTreeView,下面先看看效果图:  首先让我们看看封装得比较完善的IphoneTreeView: 复制代码 代码如下: public class IphoneTreeView extends Expandab

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

    你是否觉得手机QQ上的好友列表那个控件非常棒? 不是..... 那也没关系,学多一点知识对自己也有益无害. 那么我们就开始吧. 展开型列表控件, 原名ExpandableListView 是普通的列表控件进阶版, 可以自由的把列表进行收缩, 非常的方便兼好看. 首先看看我完成的截图, 虽然界面不漂亮, 但大家可以自己去修改界面. 该控件需要一个主界面XML 一个标题界面XML及一个列表内容界面XML 首先我们来看看 mian.xml 主界面 复制代码 代码如下: //该界面非常简单, 只要一个E

  • Android改变ExpandableListView的indicator图标实现方法

    本文实例讲述了Android改变ExpandableListView的indicator图标实现方法.分享给大家供大家参考,具体如下: 1)定义xml文件先,命名为expand_list_indicator.xml <?xml version="1.0" encoding="UTF-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"&

  • Android中ExpandableListView的用法实例

    本文实例讲述了Android中ExpandableListView的用法,ExpandableListView是android中可以实现下拉list的一个控件,具体的实现方法如下: 首先:在layout的xml文件中定义一个ExpandableListView 复制代码 代码如下: <LinearLayout       android:id="@+id/linearLayout"      android:layout_width="fill_parent"

  • 分享Android中ExpandableListView控件使用教程

    本文采用一个Demo来展示Android中ExpandableListView控件的使用,如如何在组/子ListView中绑定数据源.直接上代码如下: 程序结构图: layout目录下的 main.xml 文件源码如下: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android

  • Android 关于ExpandableListView刷新问题的解决方法

    正文 首先是最基础的 ExpandableListView vList = (ExpandableListView) this.findViewById(R.id.list); EListAdapter adapter = new EListAdapter(getApplicationContext(), list); //list 是数据源 vList.setAdapter(adapter); //适配器就不写了, 都懂的 class EListAdapter extends BaseExpa

  • Android之带group指示器的ExpandableListView(自写)

    我们都知道Android缺省的ExpandableListView的group header无法固定在界面上,当向下滚动后,不能对当前显示的那些child 指示出它们归属于哪个group,在网上搜了很多关于仿手机QQ好友分组效果的ExpandableListView,发现都不尽如意,于是乎在别人的基础上改进了一点点,其实原理还是差不多的,只是增加了往上挤出去的动画效果,而且更加简单,只不过还是没有完全到达跟QQ一样的效果,希望有高手能实现更加逼真的效果,下面我们先看看效果图:  我这里没有把Ex

  • android使用ExpandableListView控件实现小说目录效果的例子

    今天给大家讲讲android的目录实现方法,就像大家看到的小说目录一样,android 提供了ExpandableListView控件可以实现二级列表展示效果,现在给大家讲讲这个控件的用法,下面是XML定义: 复制代码 代码如下: <?xml version="1.0" encoding="utf-8"?> <LinearLayout     xmlns:android="http://schemas.android.com/apk/re

  • Android中ExpandableListView使用示例详解

    本文实例为大家分享了ExpandableListView使用示例,供大家参考,具体内容如下 MainActivity: public class Expandable_test extends Activity { private ExpandableListView listView; private Map<String, List<String>> dataset = new HashMap<>(); private String[] parentList = n

随机推荐