Skip to content Skip to sidebar Skip to footer

Android Action Bar Style Generator : Change Text Color Of Action Bar Not Available?

I use 'Android Action Bar Style Generator' website to generate styles for my actionBar. There is no possibility to change the text color of actionBar ? http://jgilfelt.github.io/an

Solution 1:

you can use this:

intactionBarTitleId= Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
if (actionBarTitleId > 0) {
    TextViewtitle= (TextView) findViewById(actionBarTitleId);
    if (title != null) {
        title.setTextColor(Color.RED);
    }
}

get id of textView on Actionbar ( actionBarTitleId ) then do what ever you want. change size, color and ....

if you want use style and for more info see This Thread

Post a Comment for "Android Action Bar Style Generator : Change Text Color Of Action Bar Not Available?"