我有一个列表视图:
<ListView
android:id="@+id/ListView01"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:cacheColorHint="@android:color/transparent" />
在相应的活动中,我已将listview中的元素设置为
listView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_multiple_choice, phoneContactList));
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
在上面的代码中,phoneContactList
是一个arrayList。
从列表中点击项目,如何更改它的颜色?
谢谢。