You need to do two things:
- Use
mListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE); - Make your custom row view implement
Checkable. (More info about this here).
You need to do two things:
mListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);Checkable. (More info about this here).