我使用自定义视图和ActionMenuView实现了工具栏,我无法更改ActionMenuView的弹出主题。
我的工具栏布局:
<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="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
app:contentInsetEnd="0dp"
app:contentInsetLeft="0dp"
app:contentInsetRight="0dp"
app:contentInsetStart="0dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<include layout="@layout/toolbar_view"/>
</android.support.v7.widget.Toolbar>
包含ActionMenuView的toolbar_view布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize">
<ImageView
android:id="@+id/iv_toolbar_home"
android:layout_width="@dimen/ldrawer_drawableSize"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:background="@drawable/selector_toggle" />
<LinearLayout
android:id="@+id/ll_menu"
android:layout_alignParentRight="true"
android:gravity="right"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<android.support.v7.widget.ActionMenuView
android:id="@+id/amvMenu"
android:layout_width="wrap_content"
android:layout_height="?attr/actionBarSize" />
</LinearLayout>
<TextView
android:id="@+id/tv_toolbar_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:ellipsize="end"
android:layout_toRightOf="@id/iv_toolbar_home"
android:layout_toLeftOf="@id/ll_menu"
android:gravity="center_vertical|left"
android:maxLines="1"
android:padding="@dimen/toolbar_title_padding"
android:textSize="@dimen/toolbar_title_font_size"
android:textColor="@color/white" />
</RelativeLayout>
问题是,如何将下拉菜单背景更改为白色?
答案 0 :(得分:-1)
只需将主题中的android:textColorPrimary
设为白色