`

ExpandableListView控件的使用

阅读更多
ExpandableListView控件的简单使用
这里的布局没有进行美化,只是功能的简单实现。

先看一下效果图:
[img]

[/img]

点击展开后效果:
[img]

[/img]

工程结构图:
[img]

[/img]

三个布局文件:
首先,第一个布局文件main.xml是在主界面定义一个ExpandableListView ,在这里我们就要和在做ListView是的方法做下对比了,其实这个listView的显示类似。主要是用来显示ExpandableListView 下的数据。第二个布局文件是定义ExpandableListView 下的一级条目目录。在这里我只为一级条目目录添加一个textView控件。第三个布局文件是定义ExpandableListView 下的二级条目目录,和一级条目目录一样,布局文件里也只有一个TextView控件。

main.xml
<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     >
  <ExpandableListView 
      android:id="@id/android:list" 
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:drawSelectorOnTop="false"/>
  <TextView  
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:id="@id/android:empty"
     android:text="No Data"/>
 </LinearLayout>


groups.xml
<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     >
  <TextView  
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:id="@+id/group"
     android:textSize="25sp"
     android:paddingLeft="35px"
     android:paddingTop="10px"
     android:paddingRight="5px"
     android:paddingBottom="10px"
     android:text="No Data"/>
 </LinearLayout>


childs.xml
<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     >
  <TextView  
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:id="@+id/child"
     android:textSize="15sp"
     android:paddingLeft="25px"
     android:paddingTop="10px"
     android:paddingRight="5px"
     android:paddingBottom="10px"
     android:text="No Data"/>
 </LinearLayout>


ExpandableActivity:
package com.amaker.expandable;
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
 import android.app.ExpandableListActivity;
 import android.os.Bundle;
 import android.view.View;
 import android.widget.ExpandableListView;
 import android.widget.SimpleExpandableListAdapter;
 /**
  * 继承ExpandableListActivity类
  */
 public class ExpandableActivity extends ExpandableListActivity {
     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         // 创建一级条目
         List<Map<String, String>> groups = new ArrayList<Map<String, String>>();
         //创建两个一级条目标题
         Map<String, String> group1 = new HashMap<String, String>();
         group1.put("group", "音乐");
         Map<String, String> group2 = new HashMap<String, String>();
         group2.put("group", "歌词");
         groups.add(group1);
         groups.add(group2);
         // 创建一级条目下的的二级条目
         List<Map<String, String>> child1 = new ArrayList<Map<String, String>>();
         //同样是在一级条目目录下创建两个对应的二级条目目录
         Map<String, String> childdata1 = new HashMap<String, String>();
         childdata1.put("child", "青花瓷");
         Map<String, String> childdata2 = new HashMap<String, String>();
         childdata2.put("child", "东风破");
         child1.add(childdata1);
         child1.add(childdata2);
         //同上
         List<Map<String, String>> child2 = new ArrayList<Map<String, String>>();
         Map<String, String> childdata3 = new HashMap<String, String>();
         childdata3.put("child", "青花瓷.lrc");
         Map<String, String> childdata4 = new HashMap<String, String>();
         childdata4.put("child", "东风破.lrc");
         child2.add(childdata3);
         child2.add(childdata4);
         // 将二级条目放在一个集合里,供显示时使用
         List<List<Map<String, String>>> childs = new ArrayList<List<Map<String, String>>>();
         childs.add(child1);
         childs.add(child2);
         /**
          * 使用SimpleExpandableListAdapter显示ExpandableListView
          * 参数1.上下文对象Context
          * 参数2.一级条目目录集合
          * 参数3.一级条目对应的布局文件
          * 参数4.fromto,就是map中的key,指定要显示的对象
          * 参数5.与参数4对应,指定要显示在groups中的id
          * 参数6.二级条目目录集合
          * 参数7.二级条目对应的布局文件
          * 参数8.fromto,就是map中的key,指定要显示的对象
          * 参数9.与参数8对应,指定要显示在childs中的id
          */
         SimpleExpandableListAdapter adapter = new SimpleExpandableListAdapter(
                 this, groups, R.layout.groups, new String[] { "group" },
                 new int[] { R.id.group }, childs, R.layout.childs,
                 new String[] { "child" }, new int[] { R.id.child });
         setListAdapter(adapter);
 
     }
     /**
      * 设置哪个二级目录被默认选中
      */
     @Override
     public boolean setSelectedChild(int groupPosition, int childPosition,
             boolean shouldExpandGroup) {
             //do something
         return super.setSelectedChild(groupPosition, childPosition,
                 shouldExpandGroup);
     }
     /**
      * 设置哪个一级目录被默认选中
      */
     @Override
     public void setSelectedGroup(int groupPosition) {
         //do something
         super.setSelectedGroup(groupPosition);
     }
     /**
      * 当二级条目被点击时响应
      */
     @Override
     public boolean onChildClick(ExpandableListView parent, View v,
             int groupPosition, int childPosition, long id) {
             //do something
         return super.onChildClick(parent, v, groupPosition, childPosition, id);
     }
 
 }


这个控件和ListView很相似,在学习的过程中,可以结合ListView的用法的来使用。
  • 大小: 10.1 KB
  • 大小: 12.6 KB
  • 大小: 27.2 KB
分享到:
评论

相关推荐

    Android之ExpandableListView控件的使用

    以上就是关于Android中`ExpandableListView`控件的使用介绍。通过合理的数据结构和自定义适配器,你可以实现复杂而富有层次的用户界面,满足各种场景的需求。在实际开发中,还可以根据需求进行更多的定制和优化。

    Android中ExpandableListView控件基本使用

    这篇博客“Android中ExpandableListView控件基本使用”可能详细介绍了如何在应用程序中有效地利用这个控件。虽然描述部分为空,但我们可以基于`ExpandableListView`的基本特性和常见用法进行深入探讨。 `...

    Android之ExpandableListView控件

    在Android开发中,`ExpandableListView`是一种常用的控件,它扩展了标准的`ListView`功能,允许子项可以被展开或折叠,呈现层次结构的数据。这个控件非常适合用来展示具有树状结构的信息,比如菜单、目录或者组织...

    QML ListView实现树形二级列表(类似 android ExpandableListView控件)

    QML 中没有直接提供类似 android 的ExpandableListView二级列表控件,treeView,但是用 treeView 实在是有些不方便,并且达不到想要的效果,所以干脆用 ListView 来扩展一个。

    ExpandableListView 展开列表控件

    `ExpandableListView`是Android平台中一个非常实用的列表控件,它允许用户展示层次结构的数据,例如,一个父项可以展开显示多个子项。在Android应用开发中,当需要展示具有嵌套关系的数据时,`ExpandableListView`是...

    一个ExpandableListView的例子,实现多级菜单分类展示

    在Android开发中,`ExpandableListView`是一种常用的控件,它允许我们展示具有层次结构的数据,比如一个多级菜单分类的场景。在这个例子中,我们将会深入探讨如何利用`ExpandableListView`来创建一个可展开和折叠的...

    ExpandableListView的使用实例

    在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠分组,每个分组下可以包含多个子项。这种控件在显示层次结构数据时非常实用,比如目录结构、菜单列表或者分类信息展示。下面将详细...

    Andriod中ExpandableListView的使用

    在Android开发中,ExpandableListView是一个非常实用的控件,它允许我们展示具有层次结构的数据,比如本例中的省市区结构。在这个场景中,我们首先从一个JSON数据源解析出省份和城市信息,然后利用...

    Android中级联菜单ExpandableListview的使用

    以上就是关于Android `ExpandableListView`的使用介绍,通过这个控件,开发者可以方便地创建具有级联效果的菜单,实现更丰富的用户交互体验。在实际项目中,还可以结合`AsyncTask`或`LiveData`等技术来动态加载和...

    Android中ExpandableListView(原生控件)3----只展开一组

    在Android开发中,ExpandableListView是一个非常实用的原生控件,它允许用户展示...这个案例是一个很好的学习资源,可以帮助你掌握如何在实际项目中利用ExpandableListView控件,特别是处理一些特殊交互需求时的技巧。

    Android常用控件(能折叠的ListView)--ExpandableListView的使用模仿QQ好友列表

    本人博客:Android常用控件(能折叠的ListView)--ExpandableListView的使用模仿QQ好友列表的demo

    Android项目实战--手机卫士33--ExpandableListView的使用

    在"Android项目实战--手机卫士33--ExpandableListView的使用"这个主题中,我们将深入探讨如何在实际的手机卫士应用中有效地利用这种控件。 首先,`ExpandableListView`是`ListView`的一个扩展,提供了更丰富的功能...

    ExpandableListView 的使用实例

    在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展开和折叠分组,展示层次结构的数据。这个控件比普通的`ListView`更加强大,因为它提供了多级的视图,使得数据的组织更加清晰。接下来,我们将...

    换种思路解决列表套列表-ExpandableListView的使用

    - 初始化:在XML布局文件中添加`ExpandableListView`控件,并在Java代码中通过`findViewById()`获取实例。 - 数据源:`ExpandableListView`需要两种数据结构,一是`List&lt;ExpandableGroup&gt;`表示父列表项,二是`List...

    ExpandableListView的使用

    在Android开发中,`ExpandableListView`是一种常用的控件,它允许用户展示具有层次结构的数据。这个控件的独特之处在于,它可以将数据项分组,每个组都可以展开或折叠,以此来显示或隐藏子项。这使得在有限的屏幕...

Global site tag (gtag.js) - Google Analytics