我有一个 ExpandableListView,一切正常。我在每个子行中都有一个复选框,当我单击子行时,我想切换如下:
expandableListView.setOnChildClickListener(new OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
CheckBox checkBox = (CheckBox) v.findViewById(R.id.checkBox1);
checkBox.toggle();
return true;
}
});
问题是程序永远不会进入 onChildClick() 事件处理程序。任何想法?