标签:
不过不用担心, 只要把Group开头的和Child开头的分成两组来看就好。 具体看下面注释部分。
package com.example.zzp.testexpandablelist; import android.app.Activity; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.ExpandableListView; import android.widget.SimpleExpandableListAdapter; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); ExpandableListView list = (ExpandableListView) findViewById(R.id.expand_list); ArrayList<Map<String, String>> groupData = new ArrayList<>(); int groupLayout = R.layout.group_view_group; String[] groupFrom = {"name", "type", "description"}; int[] groupTo = {R.id.txt_view_name, R.id.txt_view_type, R.id.txt_view_description}; ArrayList<ArrayList<Map<String, String>>> childData = new ArrayList<>(); int childLayout = R.layout.group_view_child; String[] childFrom = {"ability"}; int[] childTo = {R.id.txt_view_child_ability}; for (int i = 0; i < 3; i++) { //初始化group数据 HashMap<String, String> map = new HashMap<>(); map.put("name", "device " + String.valueOf(i)); map.put("type", "type " + String.valueOf(i)); map.put("description", "Description of device " + String.valueOf(i)); groupData.add(map); //初始化Child数据 ArrayList<Map<String, String>> childDataList = new ArrayList<>(); for (int j = 0; j < 4; j++) { HashMap<String, String> tmpMap = new HashMap<String, String>(); tmpMap.put("ability", "ability " + String.valueOf(i) + String.valueOf(j)); childDataList.add(tmpMap); } childData.add(childDataList); } /* 用四个group*数据来表示Group的表现方式,用四个child*的数据来表示Child的表示方式。 groupData,其中的每一个Map代表了一个Group的所有要显示的数据,比如在GroupTab上你想显示name,type,description,那么就在Map里面用键值对放这几项就好了。 groupLayout,只是一个视图,其中要包含有所有用于显示name,type,description等项目的元素。这些元素需要被放在groupTo里面。并且顺序要和groupFrom里面的key顺序对应。 groupFrom,要显示的Group数据的key。 groupTo,要显示的Group数据对应的View的ID。这些ID必须是之前定义的group布局里面的。 Child基本上类似,也是每一个Map对应一个Child的所有数据项。第一层List,分到不同的Group,第二层List,分到不同的ChildItem,第三层就是Map了,每个Child的数据集合。 * */ SimpleExpandableListAdapter mArrayAdapter = new SimpleExpandableListAdapter(this, groupData, groupLayout, groupFrom, groupTo, childData, childLayout, childFrom, childTo); list.setAdapter(mArrayAdapter); } }
<?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="50dp" android:background="@android:color/holo_blue_light" android:orientation="horizontal"> <TextView android:id="@+id/txt_view_name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="10dp" android:textSize="20dp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <TextView android:id="@+id/txt_view_type" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20dp" /> <TextView android:id="@+id/txt_view_description" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="20dp" /> </LinearLayout> </LinearLayout>
ChildView:
<?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="30dp" android:orientation="vertical"> <TextView android:id="@+id/txt_view_child_ability" android:layout_width="wrap_content" android:layout_height="match_parent" android:textSize="18dp" /> </LinearLayout>
【原创】Android ExpandableListView使用
标签:
原文地址:http://www.cnblogs.com/zzpbuaa/p/5284535.html