标签:tac tor get pack 相关 sqlite listview 用法 数据
ExpandableListView 和 ExpandableListActivity
如何获取 ExpandableListView对象
1.可以直接在xml布局中添加 ExpandableListView 在activity中通过id绑定控件
2.activity 继承 ExpandableListActivity 通过 getExpandableListView 方法获取
ExpandableListView的常用属性
android:groupIndicator="" 设置可扩展组图标提示
点击事件
//设置组点击事件 // melv.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener() { @Override public boolean onGroupClick(ExpandableListView expandableListView, View view, int i, long l) { return false; } }); //设置字条目点击事件 melv.setOnChildClickListener(new ExpandableListView.OnChildClickListener() { @Override public boolean onChildClick(ExpandableListView expandableListView, View view, int i, int i1, long l) { return false; } });
下面进入demo环节
1.实现手风琴效果 获取本地数据
标签:tac tor get pack 相关 sqlite listview 用法 数据
原文地址:https://www.cnblogs.com/conglingkaishi/p/9458795.html