我尝试更改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>
给我一个很好的解决方案。
提前致谢
答案 0 :(得分:1)
尝试这样的事情;我希望这是你想要的,并会帮助你:
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="colorPrimary">#009000</item>
</style>