我正在使用新的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" />