我有基于 9-patch drawable 的列表选择器,但它在 android 2.+ 和 4+ 基于 android 的设备(LG Optimus Sol E730、Nexus 4、HTC One V)上看起来不同: android 2+ 的结果
安卓 4+ 的搜索结果
这是选择器的代码:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/row_widget_selected" android:state_selected="true"/>
<item android:drawable="@drawable/row_widget_selected" android:state_pressed="true"/>
<item android:drawable="@drawable/row_widget_disabled" android:state_enabled="false"/>
<item android:drawable="@drawable/row_widget"/>
</selector>
选择器的使用:
<com.ssbs.sw.SWE.widget.SpinnerWidget
android:id="@+id/dialog_outlet_task_edit_spinner_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?listWidgetSelector"
和选择器 9-patch 可绘制
问:你可以看到相同的选择器在 android 4+ 上看起来不同,这是一个渐变,为什么会这样?