I've got AppCompatActivity that is not using Toolbar. I'm trying to style my SupportActionBar in this activity, by setting a proper theme. The theme below doesn't work (when assigned to Activity in AndroidManifest)
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
parent="@android:style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar"
parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@drawable/actionbar_background</item>
</style>
Only changing colorPrimary works (changes the color of SupportActionBar).
My question is - where is the style of SupportActionBar derived from? How to assign theme to AppCompatActivity properly?