Actionbar Text Color Change While Using Actionbarcompat
I'm failed change the ActionBar Title color (by using ActionBarCompat) by style.xml (not programatically) style.xml
Solution 1:
Replace your code :
<stylename="MyActionBarTitleText"parent="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"><itemname="android:textColor">@color/actionBarText</item></style>
with this one :
<stylename="Theme.MyAppTheme.ActionBar.TitleTextStyle"parent="android:style/TextAppearance.Holo.Widget.ActionBar.Title"><itemname="android:textColor">#ffffff</item></style>
Post a Comment for "Actionbar Text Color Change While Using Actionbarcompat"