Android_ExpandableListView】的更多相关文章

实现效果: 类似于QQ联系人列表 相关属性: android:childDivider:指定各组内子类表项之间的分隔条,图片不会完全显示, 分离子列表项的是一条直线 android:childIndicator:显示在子列表旁边的Drawable对象,可以是一个图像 android:childIndicatorEnd:子列表项指示符的结束约束位置 android:childIndicatorLeft:子列表项指示符的左边约束位置 android:childIndicatorRight:子列表项指…
ExpandableListView组件是android中一个比较常用的组件,当点击一个父item的时候可以将它的子item显示出来,像手机QQ中的好友列表就是实现的类型效果.使用ExpandableListView组件的关键就是设置它的adapter,这个adapter必须继承BaseExpandbaleListAdapter类,所以实现运用ExpandableListView的核心就是学会继承这个BaseExpanableListAdapter类. 下面是一个小demo: activvity…