1

PopUpMenu在我的应用程序中使用了支持库 v7,它按预期工作。但是样式PopUpMenu不适用于actionbarcompat.

styles.xml值如下:

<style name="Theme.Tellus" parent="@style/Theme.AppCompat.Light">
    <item name="popupMenuStyle">@style/PopupMenu.Tellus</item>
    <item name="dropDownListViewStyle">@style/DropDownListView.Tellus</item>
</style>


<style name="PopupMenu.Tellus" parent="@style/Widget.AppCompat.Light.PopupMenu">
    <item name="android:listSelector">@drawable/selectable_background_tellus</item>
    <item name="android:popupBackground">@drawable/menu_dropdown_panel_tellus</item>
    <item name="android:textSize">16sp</item>
    <item name="android:textColor">@android:color/white</item>
</style>

<style name="DropDownListView.Tellus" parent="@style/Widget.AppCompat.Light.ListView.DropDown">
    <item name="android:listSelector">@drawable/selectable_background_tellus</item>
    <item name="android:background">@color/background_actionbar</item>
    <item name="android:textColor">#FFFFFF</item>
    <item name="android:divider">@android:color/white</item>
    <item name="android:dividerHeight">1dp</item>
</style>

这是应用主题后我得到的输出。 在此处输入图像描述

它确实PopUpMenu以蓝色显示背景,从dropDownListViewStyle. 怎么PopUpMenudropDownListViewStyle?如果它正在使用,那么它应该使用的所有属性dropDownListViewStyle

我想更改MenuItem textColorwhite适合我的主题。如何将样式应用于MenuItemtextColor?

欢迎任何启蒙

4

1 回答 1

0

试试这样 -

    <style name="Theme.Tellus" parent="@style/Theme.AppCompat.Light">
    <item name="popupMenuStyle">@style/PopupMenu.Tellus</item>
    <item name="dropDownListViewStyle">@style/DropDownListView.Tellus</item>
     <item name="android:textColor">#FF0000</item>
</style>
于 2016-04-10T12:12:11.303 回答