app:popupTheme不适用于两个溢出菜单

时间:2016-09-27 10:03:24

标签: android material-design

工具栏上的弹出式溢出菜单工作正常但是当我按下手机上的菜单按钮时,它的溢出菜单(屏幕底部的那个)仍然继承了工具栏的主题,我这样做了。设置为黑暗主题以获取白色文本。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:title="@string/app_name"
    android:background="?attr/colorPrimary"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    />

我的应用主题设置为继承Theme.AppCompat.Light.NoActionBar的AppTheme。它是现在的默认值。

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

我还不熟悉Android,所以我不确定我是否忽略了一个简单的错误,或者它是否是一个简单的解决方法。

0 个答案:

没有答案