I'm trying to change the action bar background color of an activity that extends ActionBarActivity. So far my styles.xml looks like this
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="@style/Widget.AppCompat.ActionBar">
<item name="android:background">#ff2b8bff</item>
</style>
And I call on the style in my manifest like this
android:theme="@style/AppTheme"
The problem is that the action bar is always grey,it never changes to the color I have specified.I know there is a lot of information on questions like this already but none of them have worked for me.I'm just wondering what it is I am missing.