是否可以通过列表选择器对每个 Listview 项应用自定义背景?
默认的选择器为 state_focused="false"
指定了 @android:color/transparent
,但是将其更改为某种自定义绘制并不影响未选中的项。罗曼似乎暗示 在这个答案中这是可能的。
我目前正在通过在每个视图上使用自定义背景,并在选择/聚焦/任何情况下隐藏它来实现同样的效果,以便显示选择器,但是如果在一个地方全部定义这个背景会更加优雅。
作为参考,这是我用来尝试让这个工作的选择器:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="false"
android:drawable="@drawable/list_item_gradient" />
<!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
<item android:state_focused="true" android:state_enabled="false"
android:state_pressed="true"
android:drawable="@drawable/list_selector_background_disabled" />
<item android:state_focused="true" android:state_enabled="false"
android:drawable="@drawable/list_selector_background_disabled" />
<item android:state_focused="true" android:state_pressed="true"
android:drawable="@drawable/list_selector_background_transition" />
<item android:state_focused="false" android:state_pressed="true"
android:drawable="@drawable/list_selector_background_transition" />
<item android:state_focused="true"
android:drawable="@drawable/list_selector_background_focus" />
</selector>
这就是我设置选择器的方法:
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:listSelector="@drawable/list_selector_background" />
提前谢谢你的帮助!