2

我正在使用新的android.support.v7.widget.ActionMenuView(v7, r21) 来模拟我的应用程序中的拆分操作栏。我的顶部工具栏以 为主题ThemeOverlay.AppCompat.Dark.ActionBar,因此其文本和溢出图标显示为白色。但是 ActionMenuView 内容显示为黑色,有没有办法在那里应用主题,或者至少将选项项目文本着色为白色?

<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:support="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:id="@+id/bar_action"
    android:background="?attr/colorPrimary"
    support:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    support:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

<android.support.v7.widget.ActionMenuView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:id="@+id/bar_split"
    android:background="?attr/colorPrimary" />
4

1 回答 1

0

愚蠢的我,没有android:textColorPrimary在我的主题中定义!

于 2014-11-17T18:14:35.413 回答