以下脚本设置(例如)ListItem位置1的颜色,但它也为数字12(11 + 1)提供了漂亮的灰色。这是Android中的某种错误吗?
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
ListView.setSelection(arg2);
arg1.setBackgroundColor(Color.LTGRAY);
adapter.notifyDataSetChanged();
}
答案 0 :(得分:1)
ListView
回收(重用)视图。因此,您需要将背景颜色与数据相关联,而不是视图!然后,在getView()
中,您有机会根据数据正确设置背景颜色。
答案 1 :(得分:0)
@David Wasser是正确的...重复使用单元格导致多个listview行以灰色背景绘制。
但是,如果您尝试根据SELECTION STATE设置背景,请考虑以下技巧:
// set single or multi-select on your list (CHOICE_MODE_SINGLE = single row selectable)
// do this in onCreate
listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
.
.
.
// in your onItemClick, set the checked state of the item
// you DO NOT need to call notifyDataSetChanged
listView.setItemChecked(position, true);
并且,将listview单元格布局的背景设置为内置选择器或自定义选择器
内置:
android:background="?android:attr/activatedBackgroundIndicator"
CUSTOM:
android:background="@drawable/myListBackground"
抽拉/ myListBackground.xml :
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true" android:drawable="@color/lightgray" />
<item android:drawable="@color/transparent" />
</selector>
键是state_activated条目,将在选择/选中项目时使用。您还可以为其他状态指定颜色,上面的示例引用colors.xml表中的颜色。
有关详细信息,请查看How does "?android:attr/activatedBackgroundIndicator" work?