I was able to solve this issue using the following answer provided by @DanielPersson at how to pin title in Toolbar inside CollapsingToolbarLayout:
collapsingToolbarLayout.setTitleEnabled(false);
toolbar.setTitle("My Title");
By calling setTitleEnabled(false);
, the title appeared in the toolbar.
网友评论