API Leve 11+中android studio中的标题栏背景颜色变化

时间:2015-12-25 06:07:10

标签: android android-studio

我尝试更改style.xml以更改应用主题,如下所示:

<resources>

<!-- Base application theme. -->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
    <!-- Customize your theme here. -->

</style>

<style name="AppTheme" parent="AppBaseTheme" >
    <item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <item name="android:background">@color/primary_color</item>
</style>

给我一​​个很好的解决方案。

提前致谢

1 个答案:

答案 0 :(得分:1)

尝试这样的事情;我希望这是你想要的,并会帮助你:

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

    <item name="colorPrimary">#009000</item>
</style>