如何设置动作栏弹出背景?

时间:2015-04-21 11:54:34

标签: android android-actionbar popup toolbar

我正在尝试更改android.support.v7.widget.toolbar

中的弹出式背景

正在尝试这个,但它没有帮助:

<style name="DonorUaTheme.ActionBar.Solid" parent="Widget.AppCompat.Toolbar">
        <item name="android:background">@color/material_drawer_primary</item>
        <item name="android:displayOptions">showTitle|showHome</item>
        <item name="android:popupBackground">@color/material_drawer_primary</item>
    </style>

我正在使用android v15,所以我不能只设置<item name="android:popupTheme">,但我仍然需要更改弹出背景。

任何帮助都会很高兴

2 个答案:

答案 0 :(得分:5)

您可以更改弹出菜单的背景颜色,如下所示。

  1. 在styles.xml中为弹出菜单创建一个样式。

    <style name="PopupMenuStyle" parent="Theme.AppCompat.Light">
         <item name="android:background">@color/YourColor</item>
    </style>
    
  2. 将此主题设置为toolbar.xml中的工具栏弹出主题

     <android.support.v7.widget.Toolbar     
       xmlns:app="http://schemas.android.com/apk/res-auto"    
       xmlns:android="http://schemas.android.com/apk/res/android"
    
                // Your code here
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:popupTheme="@style/PopupMenuStyle" />
    
  3. 希望对你有用。

答案 1 :(得分:0)

在styles.xml文件中试用此代码

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

</style>