我在android中开发了ExpandableListView
的示例代码。数据正在适配器中填充并正确显示在ExpandableListView
中。但是我在面对Groupview
之后面临一个严重的问题,即没有扩大儿童观点。
问题是,当我在getgroupView()
方法中添加了xml(父xml)复选框时,在点击Groupview
后子视图不会展开。但是,如果选中复选框已从xml中删除所有效果良好。
类似的问题已在StackOverflow中发布,但似乎没有任何效果。
答案 0 :(得分:11)
如果您在[{1}}中放置focusable
项,则list
不再回复list items
尝试将clicks
CheckBox
属性设置为android:focusable
。
答案 1 :(得分:0)
在groupView layout
设置android:focusable="true"
,android:clickable="true"
。
对于checkbox
设置android:focusable="false"