设置活动的标题栏名称

Cha*_*nna 2 android android-titlebar custom-titlebar

我正在尝试更改我的应用程序活动菜单栏标题.我设法改变字体如下.任何人都可以帮我改变标题的名称.它可能只是一行,但我无法弄清楚.

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

Mat*_*ini 10

试试这个

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

或者如果您使用appcompat-v7

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