I am new to Android and am a bit stuck in a theme app. I use the navigation box layout, so I need to use a backward compatible theme. My theme is as follows:
<resources>
<style name="AppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/mycustomactionbar</item>
</style>
<style name="mycustomactionbar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="android:background">#6FBC2C</item>
<item name="android:textColor">#FFFFFF</item>
</style>
</resources>
However, when I run the code, the color of my action bar remains the same, but I get no errors. How could I debug such a thing? There is no error during assembly
source
share