我已经由具有图像和TextView的自定义列表。 在设定的样式,选择是不可见的。 风格是使用setTheme(R.style.rose)调用; 在创建Listactivity的方法,第一个电话。 然而,如果没有颜色被用作背景(或在式背景线被注释),则选择器橙色是可见的。 但不是当背景
listSelector
<item android:state_focused="true"
android:state_pressed="true"
android:drawable="@drawable/list_selector_background_transition" />
<item android:state_pressed="true"
android:drawable="@drawable/list_selector_background_pressed" />
<item android:state_focused="true"
android:drawable="@drawable/list_selector_background_focus" />
样式
<style name="rose">
<item name="android:textColor">@color/pink</item>
<item name="android:background">@color/rose</item>
<item name="android:cacheColorHint">@color/rose</item>
<item name="android:listSelector">@drawable/listitem_selector</item>
</style>