I am trying to get a red action bar with white text and I would also like to customize the font of the text, nothing I have tried works, the answer given here Change Background color of the action bar using AppCompat doesn't work. Here is my xml
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat">
<!-- Customize your theme here. -->
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<style name="MyActionBar" parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:titleTextStyle">@style/ActionBarTitleText</item>
<item name="android:background">@color/red</item>
<item name="background">@color/red</item>
</style>
<style name="ActionBarTitleText">
<item name="android:textColor">@android:color/white</item>
</style>
It seems like everything in here is being ignored, the action bar is black, along with basically everything else on screen, which I really don't want.