I have a listview
with simple_list_item_multiple_choice
adapter
and when I check one of checkbox
item, this unchecks the others checkboxes
, until here well, but I want to change backgroundcolor
of the others checkboxes
too.
here it is my setadapter:
final ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_multiple_choice, android.R.id.text1, values);
listView.setAdapter(adapter);
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);