如何更改 Android 应用程序中的条形颜色?

How to change color of bar in Android App?

我想在使用这种样式时更改条形颜色:

<style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light" >
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowActionBar">false</item>
    </style>

例如Android5中的系统计算器,我是说上面的栏是蓝色的。

你可以使用

<item name="background">@color/actionbar_background_color</item>

你说的是工具栏。如果是,则在您的项目中实施以下 xml:

?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/appBar"
    android:background="@color/colorPrimary"
    app:theme="@style/MyCustomTheme"

    android:layout_width="match_parent"
    android:layout_height="50dp">

</android.support.v7.widget.Toolbar>

在 activity 中将您的 activity 扩展到 ActionBarActivity,然后在 onCreate() 中使用以下代码:

ToolBar toolbar = (Toolbar) findViewById(R.id.appBar);
        setSupportActionBar(toolbar);

确保在 colors.xml 文件中为 colorPrimary 属性赋予蓝色,如果不使用 colors.xml 文件,则可以直接赋予蓝色值。

使用 appCompat21 并设置此样式:

<style name="Theme.MyTheme" parent="Theme.AppCompat.Light">
    <!-- colorPrimary is used for the default action bar background -->
    <item name="colorPrimary">@color/my_color</item>

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

更多信息here