如何使用 ExpandableListView

public class ExpandableActivity extends ExpandableListActivity {


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_expandable_list);
//定义一个List 该List 为为一级条目提供数据
List<Map<String,String>>groups =new ArrayList<Map<String,String>>();
Map<String,String> group1=new HashMap<String,String>();
group1.put("group", "group1");
Map<String,String> group2= new HashMap<String,String>();
group2.put("group", "group2");
groups.add(group1);
groups.add(group2);

//定义一个List,该List对象为第一个一级条目的子条目
List<Map<String,String>>child1=new ArrayList<Map<String,String>>();
Map<String,String> child1Data1=new HashMap<String,String>();
child1Data1.put("child", "child1Data1");
Map<String,String> child1Data2=new HashMap<String,String>();
child1Data2.put("child", "child1Data2");
child1.add(child1Data1);
child1.add(child1Data2);

//定义一个List,该List对象为第二个一级条目的子条目
   List<Map<String,String>>child2=new ArrayList<Map<String,String>>();
Map<String,String> child2Data1=new HashMap<String,String>();
child2Data1.put("child", "child2Data1");
Map<String,String> child2Data2=new HashMap<String,String>();
child2Data2.put("child", "child2Data2");

child2.add(child2Data1);
child2.add(child2Data2);

List<List<Map<String,String>>> childs =new ArrayList<List<Map<String,String>>>();
childs.add(child1);
childs.add(child2);
SimpleExpandableListAdapter asla =new SimpleExpandableListAdapter
(this,
groups,
R.layout.group,
new String[] {"group"}, 
new int[]{R.id.groupTo},
childs,
R.layout.child,
new String[]{"child"}, 
new int[] {R.id.childTo});
setListAdapter(asla);



}

 layout:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    
    <ExpandableListView
        android:id="@id/android:list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
       android:drawSelectorOnTop="false"        
        />
     


    <TextView
        android:id="@id/android:empty"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="No data" />


</LinearLayout>


 grouplayout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    




    <TextView
        android:id="@+id/groupTo"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:paddingLeft="60px"
        android:paddingTop="10px"
        android:textSize="26sp"
        android:text="No data" />


</LinearLayout>


childLayout:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">
    




    <TextView
        android:id="@+id/childTo"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:paddingLeft="50px"
        android:paddingTop="5px"
        android:textSize="20sp"
        android:text="No data" />


</LinearLayout>



      








  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值