二级列表ExpandableListView

一.概述

ExpandableListView 是什么?

官方给出的解释是:

A view that shows items in a vertically scrolling two-level list. This differs from the ListView by allowing two levels: groups which can individually be expanded to show its children. The items come from the ExpandableListAdapter associated with this view.

简单翻译一下就是:

[图片上传中...(二级.png-6c657e-1563696646492-0)]
种用于垂直滚动展示两级列表的视图,组可以单独展开。这些选项的数据是通过 ExpandableListAdapter 关联的。

二.如何使用

1.定义xml布局

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

2.定义要显示的数据

//group数据
  private ArrayList<String> mGroupList;

//item数据
private ArrayList<ArrayList<String>> mItemSet;

private void initData() {

    mGroupList = new ArrayList<>();

    mGroupList.add("我的家人");

    mGroupList.add("我的朋友");

    mGroupList.add("黑名单");

    mItemSet = new ArrayList<>();

    ArrayList<String> itemList1 = new ArrayList<>();

    itemList1.add("大妹");

    itemList1.add("二妹");

    itemList1.add("三妹");

    ArrayList<String> itemList2 = new ArrayList<>();

    itemList2.add("大美");

    itemList2.add("二美");

    itemList2.add("三美");

    ArrayList<String> itemList3 = new ArrayList<>();

    itemList3.add("狗蛋");

    itemList3.add("二丫");

    mItemSet.add(itemList1);

    mItemSet.add(itemList2);

    mItemSet.add(itemList3);
}

3.定义组视图和子选项的视图

组视图


<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp">


<TextView
    android:layout_centerVertical="true"
    android:layout_marginLeft="50dp"
    android:id="@+id/tv_group"
    android:textSize="18sp"
    android:text="name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />



<TextView
    android:layout_centerVertical="true"
    android:layout_alignParentRight="true"
    android:layout_marginRight="10dp"
    android:text="4/18"
    android:textSize="16sp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
    </RelativeLayout>

子视图

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:padding="8dp">

    <ImageView
    android:layout_marginLeft="40dp"
    android:src="@mipmap/ic_launcher"
    android:layout_width="40dp"
    android:layout_height="40dp" />
    <LinearLayout
    android:layout_marginLeft="12dp"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <TextView
    android:id="@+id/tv_name"
    android:text="@string/app_name"
    android:textSize="16sp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
    <TextView
    android:text="@string/app_name"
    android:textSize="16sp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>
    </LinearLayout>

4.自定义适配器,需要继承 BaseExpandableListAdapter 抽象类,重写相关的方法

public class ContactAdapter extends BaseExpandableListAdapter {

    private Context mContext;

    private ArrayList<String> mGroup;

    private ArrayList<ArrayList<String>> mItemList;

    private final LayoutInflater mInflater;

    public ContactAdapter(Context context, ArrayList<String> group, ArrayList<ArrayList<String>> itemList){

        this.mContext = context;

        this.mGroup = group;

        this.mItemList = itemList;

        mInflater = LayoutInflater.from(context);

    }

        //父项的个数
    @Override
    public int getGroupCount() {
        return mGroup.size();
    }

        //某个父项的子项的个数
    @Override
    public int getChildrenCount(int groupPosition) {
        return mItemList.get(groupPosition).size();
    }



        //获得某个父项
    @Override
    public Object getGroup(int groupPosition) {
        return mGroup.get(groupPosition);
    }



        //获得某个子项
    @Override
    public Object getChild(int groupPosition, int childPosition) {

        return mItemList.get(groupPosition).get(childPosition);

    }
        //父项的Id
    @Override
    public long getGroupId(int groupPosition) {
        return groupPosition;
    }
        //子项的id
    @Override
    public long getChildId(int groupPosition, int childPosition) {
        return childPosition;
    }


    @Override
    public boolean hasStableIds() {
        return false;
    }


        //获取父项的view
    @Override
    public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
        if (convertView == null){
            convertView = mInflater.inflate(R.layout.contact_group,parent,false);
        }
        String group = mGroup.get(groupPosition);
        TextView tvGroup = (TextView) convertView.findViewById(R.id.tv_group);
        tvGroup.setText(group);
        return convertView;
    }


        //获取子项的view
    @Override
    public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {

        final String child = mItemList.get(groupPosition).get(childPosition);

        if (convertView == null){
            convertView = mInflater.inflate(R.layout.contact_item,parent,false);
        }

        TextView tvChild = (TextView)convertView.findViewById(R.id.tv_name);
        tvChild.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(mContext,child,Toast.LENGTH_SHORT).show();
            }
        });


        tvChild.setText(child);
        return convertView;
    }
        //子项是否可选中,如果要设置子项的点击事件,需要返回true
    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;
    }

}

5.为 ExpandableListView 设置适配器

    ContactAdapter adapter = new ContactAdapter(getContext(), mGroupList, mItemSet);
    mContactEtv.setAdapter(adapter);

6.效果图:

二级.png

三.监听事件

1.对于处理 Item 的点击事件,还是要设置监听器,常用的有这几类:

•setOnChildClickListener//单击子选项
•setOnGroupClickListener//单击组选项
•setOnGroupCollapseListener//分组合并
•setOnGroupExpandListener//分组合并

注意:
setOnChildClickListener,想要此回调有效,适配器的isChildSelectable()方法必须返回true

四.属性

divider 这个属性用于设置父选项之间的分割线样式

childDivider 自选项之间分割样式

dividerHeight 用于设置分割线的高度

groupIndicator 这个属性是用于控制父项前面的小箭头用的,如果想要用自己的图片替换掉那个箭头可以这样写:
1.android:groupIndicator="@drawable/indicator"

indicator.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_expanded="true" android:drawable="@drawable/open"/>
    <item android:drawable="@drawable/close"/>
</selector>

indicatorLeft 箭头或者自己设置的图片的左边框距离手机左边边缘的距离,类似于marginLeft

indicatorStart 箭头或者自己设置的图片的左边框距离手机左边边缘的距离,类似于marginLeft

indicatorRight和indicatorEnd 暂时还用不上,因为箭头一般在列表的左边,使用方法应该和上面两个方法差不多

childIndicator 用于设置子项前显示的图标,不设置的话默认是没有图标的

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,313评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,369评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,916评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,333评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,425评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,481评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,491评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,268评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,719评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,004评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,179评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,832评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,510评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,153评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,402评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,045评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,071评论 2 352