Is there a way to clear the selected item in a ListView?
The ListView is defined like this:
For CHOICE_MODE_SINGLE / singleChoice
int v = listView.getCheckedItemPosition(); if (v >= 0) listView.setItemChecked(v, false);