支持ActionMenuView更改popupTheme

时间:2015-11-17 22:53:06

标签: android android-toolbar android-styles

我使用自定义视图和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>

结果是:
enter image description here

enter image description here


问题是,如何将下拉菜单背景更改为白色?

1 个答案:

答案 0 :(得分:-1)

只需将主题中的android:textColorPrimary设为白色

即可