4

目标是更改 ListView 选定行的背景颜色。我在 API 级别 13 和 16 上成功了。但是相同的代码在 API 级别 10 (2.3.3) 上失败了。没有抛出异常,但也没有改变颜色。

这就是我尝试过的;

list_row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/row_bg_colors"
    android:orientation="vertical"
    android:padding="8dp"
    >

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name"
        android:textSize="25sp" />

</LinearLayout>

row_bg_colors.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- selected -->
    <item android:drawable="@color/lightBlue" android:state_selected="true"/>
    <item android:drawable="@color/lightBlue" android:state_activated="true"/>
    <item android:drawable="@color/lightBlue" android:state_focused="true"/>
    <item android:drawable="@color/lightBlue" android:state_checked="true"/>

    <!-- default -->
    <item android:drawable="@drawable/unit_bg"/>

</selector>

非常简单的适配器,与背景无关。经典 ListView 对象(未扩展)。活动 xml 文件中 ListView 上的 singleChoice 属性。

没有关于兼容性的警告。

那么我缺少一个不受支持的功能吗?或者是什么?

4

1 回答 1

1

将列表选择器也添加到列表视图中。那是:

<ListView
    android:listSelector="@drawable/row_bg_colors"
/>

并且还保留 row_bg_colors 作为线性布局行的背景。

希望有帮助。

于 2014-01-06T04:30:46.420 回答