I have a ListView with a custom adapter. The ListView allows multiple select, but somehow it\'s not recognising when an item is selected.
ListView
I
Just have a try:
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
holder.checkbox.setFocusable(false);
I think that is the listView's sub item view shoudld implements the Checkable interface, that means the converted View(convertView) should have all the method of Checkable.