0
I’m studying to develop Android applications, I’m making an App, but I can’t change the color of my Actionbar. I’m developing for Android Kitkat.
This is my style.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:background">#009933</item>
</style>
</resources>
In my manifest is the theme 'Apptheme'.
What might be going on?
You are using Appcompat?
– rsicarelli