Is it possible to make a multiple choice list with android:choiceMode="multipleChoice"
or setChoiceMode(ListView.CHOICE_MODE_MULTIPLE)
on an ExpandableListView
? I am able to do this with CheckBox
es on a plain ListView
, but it doesn't seem to be working with ExpandableListView
. In the latter, clicking the list item (either parent or child) does not affect the checkbox as it does in the former.
I have noticed that it is possible to click exactly on the checkbox to make it toggle, but this is a very small target.
Here is a relevant unanswered forum post.