I am using ListView with CheckBox. I have selected only one CheckBox but it\'s automatically selected into Multiple Rows using Scrol
ListView
CheckBox
Scrol
To make your listview focusable, remove focus from the items themselves. Add the following after instantiating listview:
listview.setItemsCanFocus(false);
Then add the following to your list_item.xml
With this, your setOnItemClickListener() will get called
setOnItemClickListener()