android title won't show in toolbar

后端 未结 9 1628
粉色の甜心
粉色の甜心 2021-01-07 16:41

I have an xml that I use with so many activities with fragments file but my problem is that I can\'t display the text I want in the toolbar, I use that xml that way because

9条回答
  •  一个人的身影
    2021-01-07 17:15

    Setting,

    app:title="@string/my_title"
    

    within the declaration of the the android.support.v7.widget.Toolbar, hard codes the title in the toolbar.

    To set the title programatically,

    Toolbar toolbar = (Toolbar) findViewById(R.id.my_toolbar);
    toolbar.setTitle("my title");
    setSupportActionBar(toolbar);
    

    in your activity class.

提交回复
热议问题