0

我刚刚创建了一个 Android 项目(为简单起见,针对 4.0 及更高版本),如何更改操作栏的背景颜色?

我是 Android 的初学者,我对最简单的事情感到困惑。我已经阅读了类似问题的答案,但它们并不适用,我什至无法解释原因。我已阅读https://developer.android.com/training/basics/actionbar/styling.html并提到了一个名为 res/values/themes.xml 的文件,当我创建项目时该文件不存在,所以它没用大部头书。

我知道这绝对是初学者的东西,但我已经想放弃了。请告诉我我应该在哪里更改 Android 操作栏上的不同背景颜色。我知道我需要在 res/values/styles.xml 中创建自定义操作栏样式,但我不知道作为该样式的父级要放入什么,我尝试的所有操作都会出错。

这是使用新 Android 项目生成的 res/values/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="android:Theme.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>
4

1 回答 1

1

我会推荐你​​这个页面:

http://jgilfelt.github.io/android-actionbarstylegenerator/

从那里您可以生成一种样式并从中学习。我认为这是学习它的最好方法。

下载 zip 文件后,您将拥有 5 个文件夹。

drawable drawable-hdpi drawable-mdpi drawable-xhdpi 值

在可绘制文件夹中,您有许多使用其他可绘制文件夹上的图像的 xml。这里定义选择器来指定一个图像是否用于焦点状态等......

文件夹值包含一个带有颜色的 xml,另一个带有样式的 xml。检查 style.xml 以了解如何修改操作栏中的内容。

如果只想修改背景颜色:

<style name="Theme.Example" parent="@android:style/Theme.Holo.Light">
    <item name="android:actionBarStyle">@style/ActionBar.Solid.Yourapp</item>

</style>

<style name="ActionBar.Solid.Yourapp" parent="@android:style/Widget.Holo.Light.ActionBar.Solid">
    <item name="android:background">#ff0000</item> <= The color you want
</style>
于 2013-08-31T10:14:58.563 回答