My problem is - I've got an ExpandableListView
and want to use Contextual Action Bar (CAB)
on it's child items. The bad thing is - the group items are also get selected by long-click, which is bad for me. So is there any way to make them non-selectable while in ActionMode?
I tried to use onItemLongClick
; tried onLongClick inside getGroupView
. Tried some other tricks but failed.
If you find this impossible - maybe there is a way to make all the child items within the selected group be selected as well? That could be a solution, but I could not do that niether. Thank you.