我正在使用ListView和
android:choiceMode="multipleChoice"
和具有
的项目
android:background="?android:attr/selectableItemBackground"
将手指放在项目上时,背景越来越暗,但在此背景变为彩色之后再点击它 如何保留指示选中/选中此项目的背景?
到目前为止,我已经选择了这样的选择:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/abc_list_pressed_holo_light" android:state_checked="true" />
<item android:drawable="@drawable/abc_list_selector_holo_light" />
</selector>
这或多或少做了我想做的事情,但我不确定直接使用@drawable/abc_list_selector_holo_light
代替?android:attr/selectableItemBackground
是否正常。