为actionOverflow菜单项应用样式,它适用于motorola-xoom平板电脑(Android 4.1.2),但它不适用于三星设备(标签+手机)。
以下是 style.xml
中的代码<style name="MyCustomTheme" parent="@style/Theme.AppCompat">
<item name="android:dropDownListViewStyle">@style/DropDownListViewStyle</item>
</style>
<style name="DropDownListViewStyle" parent="@style/Widget.AppCompat.ListView.DropDown">
<item name="android:divider">@color/black</item>
<item name="android:dividerHeight">1dp</item>
<item name="android:background">@color/white</item>
</style>
答案 0 :(得分:0)
也许你忘记了没有android的支持项目??
<style name="MyCustomTheme" parent="@style/Theme.AppCompat">
<item name="android:dropDownListViewStyle">@style/DropDownListViewStyle</item>
<item name="dropDownListViewStyle">@style/DropDownListViewStyle</item>
</style>