1

我的应用程序界面最初看起来像这样。“我的名字”是一个 TextView,“我的按钮”是一个以图像为背景的按钮。最小 SDK 为 16。

图 1

我通过添加自定义主题更改了应用程序的操作栏颜色。我使用了下面的代码。

<style name="AppTheme" parent="Theme.AppCompat.Light">
    <item name="android:actionBarStyle">@style/MyTheme</item>
    <!-- Customize your theme here. -->
</style>
<style name="MyTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="android:background">@color/com_facebook_blue</item>
</style>

然后我的输出是这样的。 在此处输入图像描述

所有背景颜色都更改为应用程序的新颜色。我只需要更改操作栏的颜色。谁能帮我?

4

1 回答 1

0

尝试这个

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>
于 2016-02-18T10:25:37.427 回答