在Android中设置Action Bar的背景颜色

时间:2014-04-17 13:35:55

标签: android android-actionbar android-custom-view android-appcompat

你好,我是Android中的菜鸟。

我正在使用appcompat支持库使我的应用程序向后兼容。操作栏颜色默认为Light我想将背景颜色更改为自定义颜色。

知道怎么做吗?

styles.xml

<resources>

    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

</resources>

enter image description here

3 个答案:

答案 0 :(得分:1)

这解决了我的问题。谢谢@Zohra

ActionBar mActionBar = getActionBar();
mActionBar.setBackgroundDrawable(new ColorDrawable("COLOR"));

答案 1 :(得分:0)

您可以尝试使用official documentation中的方法。我认为它有明确的例子如何做到。

答案 2 :(得分:0)

你的风格可能看起来像这样

参考: - https://developer.android.com/training/basics/actionbar/styling.html

  <style name="CustomActionBarTheme"
       parent="@style/Theme.AppCompat.Light">

    <!-- Support library compatibility -->
    <item name="actionBarStyle">@style/MyActionBar</item>
  </style>

<!-- ActionBar styles -->
<style name="MyActionBar"
       parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">

    <!-- Support library compatibility -->
    <item name="background">@drawable/actionbar_background</item>
</style>