在继承的BaseExpandableListAdapter的ExpandableListView的Adapter中,重写以下方法
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
然后设置ExpandableListView的 setOnChildClickListener。即可实现子Item的点击事件
2023-12-12 22:43:10
在继承的BaseExpandableListAdapter的ExpandableListView的Adapter中,重写以下方法
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
然后设置ExpandableListView的 setOnChildClickListener。即可实现子Item的点击事件