我正在尝试使用具有不同背景颜色的项目设置ListView
,因此我的适配器的getView()
方法使用适当的可绘制资源调用setBackgroundResource()
以获得所需的背景颜色。< / p>
如果我使用引用ColorDrawable
作为其颜色的ColorStateList
,则点击该项目时,不会绘制ColorStateList
中按下状态的颜色。
如果我使用StateListDrawable
引用ColorDrawable
作为按下状态而使用不同ColorDrawable
作为未按下状态,则在点击该项目时会获得所需的突出显示效果。
我已经建立了一个简单的项目来证明这一点。以下是getView()
:
ListAdapter
方法
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View retval = getLayoutInflater().inflate(android.R.layout.simple_list_item_1, parent, false);
TextView textView = (TextView)retval.findViewById(android.R.id.text1);
textView.setText("" + position);
switch ( position ) {
case 0:
retval.setBackgroundResource(R.drawable.list_background_item_0);
break;
case 1:
retval.setBackgroundResource(R.drawable.list_background_item_1);
break;
}
return retval;
}
RES /抽拉/ list_background_item_0.xml:
<color xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/list_background_item_0" />
RES /颜色/ list_background_item_0.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="@color/list_background_item_0_pressed"/>
<item android:color="@color/list_background_item_0_default"/>
</selector>
RES /抽拉/ list_background_item_1.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/list_background_item_1_pressed" />
<item android:drawable="@drawable/list_background_item_1_default" />
</selector>
RES /抽拉/ list_background_item_1_default.xml:
<color xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/list_background_item_1_default" />
RES /抽拉/ list_background_item_1_pressed.xml:
<color xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/list_background_item_1_pressed" />
RES /值/ colors.xml:
<resources>
<color name="list_background_item_0_default">#FFCCCC</color>
<color name="list_background_item_0_pressed">#996666</color>
<color name="list_background_item_1_default">#CCFFCC</color>
<color name="list_background_item_1_pressed">#669966</color>
</resources>
列表项0配置了引用ColorDrawable
的{{1}},并且在按下时不显示突出显示。列表项1配置了ColorStateList
并显示突出显示。
我更愿意使用StateListDrawable
而不是ColorStateList
,因为它看起来更干净,每个项目类型只涉及少一个文件。有什么我错过了让我使用这种方法吗?如果不打算像我期望的那样工作,有人可以解释原因吗?
答案 0 :(得分:4)
感谢Luksprog的评论,我了解到StateListDrawable
引用的drawable可以是来自colors.xml
的颜色。这使得StateListDrawable
解决方案优于ColorStateList
版本。
最终解决方案是......
getView()
方法:
RES /颜色/ list_background_item_0.xml:
RES /抽拉/ list_background_item_0.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/list_background_item_0_pressed" />
<item android:drawable="@color/list_background_item_0_default" />
</selector>
RES /抽拉/ list_background_item_1.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/list_background_item_1_pressed" />
<item android:drawable="@color/list_background_item_1_default" />
</selector>
RES /抽拉/ list_background_item_1_default.xml:
RES /抽拉/ list_background_item_1_pressed.xml:
RES /值/ colors.xml:
此解决方案与我预期的ColorStateList
版本一样干净或清洁。