如何更改操作栏菜单充气机图标颜色

时间:2015-07-29 05:32:39

标签: android css android-actionbar android-theme android-menu

我想在操作栏中更改菜单的颜色,因为非常明显,但我还没有真正弄明白。由于操作栏的透明度,我想将其更改为与蓝色下划线相同的颜色。

以下是我在styles.xml中的内容

<resources>

    <style name="AppTheme" parent="android:Theme.Holo.Light">
        <item name="android:actionBarStyle">@style/ActionBarTheme</item>
    </style>

    <style name="ActionBarTheme" parent="android:Widget.Holo.Light.ActionBar.Solid.Inverse">
        <item name="android:background">@color/cyan</item>
    </style>

</resources>

和我的themes.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- the theme applied to the application or activity -->
    <style name="CustomActionBarTheme"
           parent="@android:style/Theme.Holo.Light.DarkActionBar">
        <item name="android:actionBarStyle">@style/MyActionBar</item>
    </style>

    <!-- ActionBar styles -->
    <style name="MyActionBar"
           parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:color">@color/cyan</item>
    </style>
</resources>

我该怎么做?

1 个答案:

答案 0 :(得分:1)

尝试使用新的材质设计主题造型!然后你可以改变

  • 原色
  • 次要颜色
  • 强调色
  • 文字和背景颜色

指定here