为什么ColorStateList的按下状态不能与ListView项一起使用?

时间:2014-01-08 21:12:58

标签: android android-listview android-resources android-drawable

我正在尝试使用具有不同背景颜色的项目设置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,因为它看起来更干净,每个项目类型只涉及少一个文件。有什么我错过了让我使用这种方法吗?如果不打算像我期望的那样工作,有人可以解释原因吗?

1 个答案:

答案 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版本一样干净或清洁。