I want to make a view where I can select multiple items from listview and also side by side am changing the color of selected list item and saving that item into my arraylis
I have also encountered this problem, and found out that it is because recycling views. If i remember right setting this removes recycling and fixes the problem, but it's not the best option here.
@Override
public int getItemViewType(int position) {
return IGNORE_ITEM_VIEW_TYPE;
}