如何在 android 应用程序中更改工具栏的标题?
How to change the toolbar's title in android app?
我的 android 应用程序有一个工具栏,我想更改它的标题。我使用了 toolbar.setTitle() 但它不起作用...请帮忙。我应该怎么办?我尝试了 getSupportActionBar().setTitle() 但它不起作用。
尝试在onCreate()
方法中使用this.setTitle(title);
。
使用下面的代码设置标题
Toolbar mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);
setSupportActionBar(mActionBarToolbar);
getSupportActionBar().setTitle("My title");
我的 android 应用程序有一个工具栏,我想更改它的标题。我使用了 toolbar.setTitle() 但它不起作用...请帮忙。我应该怎么办?我尝试了 getSupportActionBar().setTitle() 但它不起作用。
尝试在onCreate()
方法中使用this.setTitle(title);
。
使用下面的代码设置标题
Toolbar mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);
setSupportActionBar(mActionBarToolbar);
getSupportActionBar().setTitle("My title");