1
I have an App that runs from API 9 to Android 23, however the text colors are different from the set colors, the correct would be Blue Toolbar with white text. The problem only occurs in API 9 and 10.
And the style is as follows:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
<style name="ThemeAccent" parent="AppTheme">
<item name="colorAccent">@color/colorPrimary</item>
</style>
Any solution to this problem?
Thanks in advance!
I will make some changes to the style, and I’m already using Toolbar. Thanks for the effort! : D
– Luis Paulo de Sousa Lima