android title won't show in toolbar

后端 未结 9 1627
粉色の甜心
粉色の甜心 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:14

    I actually had to get the toolbar_title to set the text into each different activity:

        toolbar = findViewById(R.id.toolbar);
        toolbarTitle = findViewById(R.id.toolbar_title);   //<----- here
        toolbarTitle.setText(getString(R.string.my_activity_toolbar_title));
        setSupportActionBar(toolbar);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    

提交回复
热议问题