簡體   English   中英

更改Appcompat主題的操作欄顏色

[英]Change the Actionbar Color of an Appcompat Theme

我想為我的動作欄獲得一些橙色。 問題是,我正在為我的應用程序使用appcompat主題:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

</style>
<style name="menu_labels_style">
    <item name="android:background">@drawable/fab_label_background</item>
    <item name="android:textColor">@color/white</item>
</style>

</resources>

通常的方式是:

<resources>
    <style name="MyTheme" parent="@android:style/Theme.Holo.Light">
        <item name="android:actionBarStyle">@style/MyActionBar</item>
    </style>

    <style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:background">#F39530</item>
    </style>
</resources> 

(例如),將無法正常工作。 那么如何更改AppCompat主題中操作欄的顏色?

使用colorPrimary設置顏色,如

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

        <!-- colorPrimary is used for the default action bar background -->
        <item name="colorPrimary">@color/background_green</item>

        <!-- colorPrimaryDark is used for the status bar -->
        <item name="colorPrimaryDark">@color/background_green</item>

        <!-- colorAccent is used as the default value for colorControlActivated,
             which is used to tint widgets -->
        <item name="colorAccent">@color/darkgreen_activeTextColor</item>
<style>

另請參閱Google開發者的此博客文章

AppCompat v21 - 前棒棒糖設備的材料設計

暫無
暫無

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

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