在实现类似通信录,等带有两层或多层组织架构的列表功能时,会使用到ExpandableListView,他是ListView的子类,使用方式也和ListView大同小异,这里做一个总结。关键类:1、SimpleExpandableListAdapter2、SimpleCursorTreeAdapter3、BaseExpandableListAdapter4、ExpandableLi..
分类:
其他好文 时间:
2017-04-07 18:56:22
阅读次数:
194
分组列表视图(ExpandableListView) 和ListView不同的是它是一个两级的滚动列表视图,每一个组可以展开,显示一些子项,类似于QQ列表,这些项目来至于ExpandableListAdapter的子类,也就是说,要实现向里面添加项目,必须写一个子类实现ExpandableListA ...
分类:
其他好文 时间:
2016-10-13 11:30:46
阅读次数:
202
ExpandableListView的用法和ListView非常像,只是其所显示的列表项应该由ExpandableListAdapter提供,下面是它的xml属性及说明: 然而,接下来是用事实说话了: 1、该项目的布局文件非常简单,和ListView差不多,此处就不贴出代码了。 2、Expandab ...
分类:
其他好文 时间:
2016-06-21 17:08:53
阅读次数:
149
//创建一个BaseExpandableListAdapter对象 ExpandableListAdapter adapter = new BaseExpandableListAdapter() { public Objec...
分类:
其他好文 时间:
2015-09-17 17:37:21
阅读次数:
122
在开发列表的界面的时候经常会重写BaseAdapter,利用网上的知识点技巧,自己对它进行了二次封装方便以后在项目中再次使用。使用起来方便得很。
当然如何你看了代码可以的话,也可以对ExpandableListAdapter同样的封装!
使用自定义BaseAdapter:
package com.cyy.myandroid;
import android.content.Context;
...
分类:
移动开发 时间:
2015-01-29 14:47:10
阅读次数:
203
1、扩展BaseExpandableListAdapter实现ExpandableListAdapter2、使用SimpleExpandableListAdapter将两个List集合包装成ExpandableListAdapter3、使用SimpleCursorTreeAdapter将Cursor...
分类:
其他好文 时间:
2014-05-05 23:43:51
阅读次数:
280