Remove title in Toolbar in appcompat-v7

前端 未结 18 1600
孤街浪徒
孤街浪徒 2020-12-07 09:52

The documentation of Toolbar says

If an app uses a logo image it should strongly consider omitting a title and subtitle.

18条回答
  •  再見小時候
    2020-12-07 10:34

    Another way to remove the title from your Toolbar is to null it out like so:

    Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);
    toolbar.setTitle(null);
    

提交回复
热议问题