改变工具栏的菜单背景与材料设计

时间:2015-07-01 07:35:04

标签: android material-design android-toolbar

您好我想改变菜单背景的风格,弹出主题它不会改变

我的工具栏代码

<android.support.v7.widget.Toolbar  xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:background="@color/fondoNavigation"
     android:theme="@style/CustomToolbar"
     android:popupTheme="@style/ThemeOverlay.AppCompat.Dark">
</android.support.v7.widget.Toolbar>

我的风格

<style name="AppTheme" parent="AppTheme.Base">

</style>

<style name="AppTheme.Base" parent="Theme.AppCompat.NoActionBar">

    <item name="colorPrimary">@color/fondoNavigation</item>
    <item name="colorAccent">@color/letraNavigation</item>

</style>

<style name="CustomToolbar" parent="@style/ThemeOverlay.AppCompat.Light">
    <item name="android:textColorPrimary">@color/letraNavigation</item>
    <item name="android:textColorSecondary">@color/letraNavigation</item>
</style>

我的v21风格

<style name="AppTheme" parent="AppTheme.Base">
    <item name="android:colorPrimary">@color/fondoNavigation</item>
    <item name="android:colorAccent">@color/letraNavigation</item>
    <item name="android:textColorPrimary">@color/fondoNavigation</item>
</style>

2 个答案:

答案 0 :(得分:1)

有了这个,我改变了背景和其他事情

 <style name="CustomToolbar" parent="ThemeOverlay.AppCompat.Light">
    <item name="android:textColorPrimary">@color/letraNavigation</item>
    <item name="android:textColorSecondary">@color/letraNavigation</item>
    <item name="android:popupBackground">@color/fondoNavigation</item>
    <item name="android:background">@color/fondoNavigation</item>
</style>

答案 1 :(得分:0)

不使用支持库的人员的解决方案

<Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_height"
android:paddingTop="30dp"
android:background="#e53935"
android:elevation="4dp"
android:theme="@style/ToolbarTheme"
android:popupTheme="@style/ToolbarPopUpTheme"/>

styles.xml

<style name="ToolbarTheme" parent="android:Theme.Material" />
<style name="ToolbarPopUpTheme" parent="android:Theme.Material.Light"/>