I'm studying to develop Android applications, I'm making an App, but I can not 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 could be happening?