目标是更改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属性。
没有关于兼容性的警告。
那么我缺少一个不受支持的功能吗?或者是什么?
答案 0 :(得分:1)
也将列表选择器添加到列表视图中。那就是:
<ListView
android:listSelector="@drawable/row_bg_colors"
/>
并将row_bg_colors保留为线性布局行的背景。
希望有所帮助。