multipleChoice ListView和具有selectableItemBackground背景的项目

时间:2014-12-01 01:25:21

标签: android android-view

我正在使用ListView和 android:choiceMode="multipleChoice"
和具有
的项目 android:background="?android:attr/selectableItemBackground"

将手指放在项目上时,背景越来越暗,但在此背景变为彩色之后再点击它 如何保留指示选中/选中此项目的背景?

更新1:

到目前为止,我已经选择了这样的选择:

<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是否正常。

0 个答案:

没有答案