簡體   English   中英

如何更改操作欄菜單充氣機圖標顏色

[英]How to change action bar menu inflator icon color

我想在操作欄中更改菜單的顏色,因為它非常醒目,但我實際上還無法弄清楚。 由於操作欄透明,我想將其更改為與藍色下划線相同的顏色。

這是我的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>

我怎樣才能做到這一點?

嘗試使用新的材質設計主題樣式! 那你可以改變

  • 原色
  • 二次色
  • 口音顏色
  • 文字和背景顏色

作為指定在這里

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM