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
Keep track of the items selected in the listView in the Activity. In the getView of the adapter check if position equals selected position in the listview and setBackgroundColor for the view there. This will work.