I am trying to describe my action bar. When I apply my theme, the preview (in Android Studio) displays it correctly, but at runtime on the device the action bar is completely absent.
My values are /styles.xml file:
<resources>
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
<item name="android:windowBackground">@color/background_gray</item>
<item name="android:actionBarStyle">@style/GreenActionBar</item>
</style>
<style name="AppTheme" parent="AppBaseTheme"/>
<style name="GreenActionBarBase">
<item name="android:background">#00c341</item>
</style>
<style name="GreenActionBar" parent="GreenActionBarBase"/>
</resources>
Preview:

Runtime:

What am I missing?
source
share