android ExpandableListView setOnChildClickListener事件失效问题

在使用ExpandableListView setOnChildClickListener事件不触发。

1.adapter 里 

 public boolean isChildSelectable(int groupPosition, int childPosition){

//这里必须返回true
return true;
}

2.如果列表项里使用的TextView,检查是否使用了android:textIsSelectable="true"属性,

去掉该属性就能正常影响

猜你喜欢

转载自blog.csdn.net/coffee_shop/article/details/20721399
今日推荐