The documentation of Toolbar says
Toolbar
If an app uses a logo image it should strongly consider omitting a title and subtitle.
Another way to remove the title from your Toolbar is to null it out like so:
null
Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar); toolbar.setTitle(null);