我想在溢出菜单中更改分隔线的颜色。我设法使用以下代码完成它。但我已经意识到应用程序的所有微调器中的分隔符也会发生变化。有没有办法只为溢出菜单更改颜色?
<style name="AppTheme" parent="android:Theme.Holo.Light">
<item name="android:dropDownListViewStyle">@style/MyDropDownListView</item>
</style>
<style name="MyDropDownListView" parent="android:style/Widget.Holo.ListView.DropDown">
<item name="android:divider">#bb0000</item>
<item name="android:dividerHeight">5dp</item>
</style>