我已经Spinner
在我的应用程序中集成了一个,现在我想将在我单击微调器时打开的弹出窗口中的分隔线从白色更改为另一种颜色,我styles.xml
在其中一个帖子中的建议中添加了以下内容:
<style name="applicationTheme" parent="@android:style/Theme.Light">
<item name="android:dropDownListViewStyle">@style/mySpinnerStyle</item>
</style>
<style name="mySpinnerStyle" parent="android:style/Widget.ListView.DropDown">
<item name="android:divider">#00ff00</item>
<item name="android:dividerHeight">5dp</item>
</style>
并像这样applicationTheme
在Manifest
文件中应用:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/applicationTheme" >
...
但这对我没有任何好处。有人知道如何更改Spinner
弹出窗口中的分隔符吗?
谢谢。