I want to change the color of the title of the action bar to white in android. and I use the theme in Theme.AppCompat.Light values ββand 14 Theme.AppCompat.Light.DarkActionBar
I already tried in the values ββfolder:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light"> <item name="actionBarStyle">@style/MyActionBar</item> </style> <style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse"> <item name="android:textColor">@android:color/white</item> </style>
and -14 folder values
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="actionBarStyle">@style/MyActionBar</item> </style> <style name="MyActionBar" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse"> <item name="android:textColor">@android:color/white</item> </style>
but the color of the ActionBar name does not change.
source share