ExpandableListView OnChildClickListener not work

来源:互联网 发布:手机淘宝怎么关闭店铺 编辑:程序博客网 时间:2024/06/06 19:51

You must activate that your children are selectable! 

To do thatreturn true in your (overriden) isChildSelectable method of class ExpandableListAdapter.


@Overridepublic boolean isChildSelectable(int groupPosition, int childPosition) {    return true;}



From:http://stackoverflow.com/questions/11529472/expandablelistview-onchildclicklistener-not-work

0 0
原创粉丝点击