I\'ve prepared a custom listview using BaseAdapter. Now I want to change color of selected item of listview on click event. And multiple items should be selected. Here I am
"Thanks a lot for your help. I've done all this. Now I found that when I click one item in list, another item is also get selected automatically. Is there any problem with BaseAdapter?"
For this problem you need to save states of your listview rows that whether that row is selected or not in getview check if it is selected then set color of row as selected. You need to save state also whenever you select or deselect any row. Here is a similar example instead of checkbox, row will be there in your case... Hope it will help you i am giving you a link ....
How to implement a button that gets all checkbox's state and adds the value of checked item into arraylist?