您的位置:首页 > 其它

ExpandableListView OnChildClickListener not work

2016-11-29 16:18 302 查看
You must activate that your children are selectable!

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

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


From:http://stackoverflow.com/questions/11529472/expandablelistview-onchildclicklistener-not-work
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: