I have a custom Listview using a adapter class to extend ArrayAdapter of a Item class. I have the ability to change between choice modes of NONE,Single and Multi. This all
Edit as :
for (int i = checkedItemsCount-1; i >= 0 ; i--) { ^^^^^
INSTED OF
for (int i = checkedItemsCount-1; i >= 0 ; --i) {