set title bar name of a activity

Channa picture Channa · Apr 14, 2015 · Viewed 15.7k times · Source

I'm trying to change my applications activity menu bar title. I managed to change font as follows. Anyone help me to change the name of the title. It may be just a one line, but I can't figure it out.

int actionBarTitle = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
    TextView actionBarTitleView = (TextView) getWindow().findViewById(actionBarTitle);
    if(actionBarTitleView != null){
        actionBarTitleView.setTypeface(typeFace);
    }

Answer

Mattia Maestrini picture Mattia Maestrini · Apr 14, 2015

Try this

getActionBar().setTitle("Your title");

or this if you use appcompat-v7

getSupportActionBar().setTitle("Your title");