其他分享
首页 > 其他分享> > android-为什么ColorStateList的按下状态不能与ListView项一起使用?

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

作者:互联网

我正在尝试使用具有不同背景颜色的项目设置ListView,因此我适配器的getView()方法调用setBackgroundResource(),并为所需的背景颜色使用适当的可绘制资源.

如果我使用引用ColorStateList作为其颜色的ColorDrawable,则在我点击该项目时,不会绘制ColorStateList中按下状态的颜色.

如果我使用一个StateListDrawable,它为按下状态引用一个ColorDrawable,而为未按下状态引用一个不同的ColorDrawable,则当我点击该项目时,将获得所需的突出显示效果.

我已经建立了一个简单的项目来演示这一点.这是ListAdapter的getView()方法:

@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 / drawable / list_background_item_0.xml:

<color xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/list_background_item_0" />

分辨率/颜色/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 / drawable / 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 / drawable / 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 / drawable / 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 / values / 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,该ColorDrawable引用ColorStateList并且在按下时不显示突出显示.列表项1配置有一个StateListDrawable并显示突出显示.

我宁愿使用ColorStateList而不是StateListDrawable,因为它看起来更干净,并且每个项目类型所涉及的文件减少了一个.有什么我想念的东西可以让我使用这种方法吗?如果它不是我期望的那样工作,有人可以解释为什么吗?

解决方法:

感谢Luksprog的注释,我了解到StateListDrawable引用的可绘制对象可以是colors.xml中的颜色.这使得StateListDrawable解决方案优于ColorStateList版本.

最终的解决方案是…

getView()方法:

>没有变化

分辨率/颜色/list_background_item_0.xml:

>已删除

res / drawable / 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 / drawable / 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 / drawable / list_background_item_1_default.xml:

>已删除

res / drawable / list_background_item_1_pressed.xml:

>已删除

res / values / colors.xml:

>没有变化

这个解决方案比我预期的ColorStateList版本可以使用的清洁或干净.

标签:android-resources,android-listview,android-drawable,android
来源: https://codeday.me/bug/20191030/1964514.html