是否可以通过列表选择器将自定义背景应用于每个Listview项目?
默认选择指定@android:color/transparent
的state_focused="false"
情况下,但改变这一些自定义绘制不影响未选定的项目。罗曼·盖伊(Romain Guy)似乎在此答案中暗示这是可能的。
我目前正在通过在每个视图上使用自定义背景并在选择/聚焦/以任何方式显示项目时隐藏它来实现相同的效果,但是将所有这些都定义在一个位置会更加优雅。
作为参考,这是我用来尝试使其工作的选择器:
<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" />
在此先感谢您的帮助!