How to remove the application header in the ToolBar , which is set by default.
ToolBar
toolbar.setTitle(" ");
Activity
toolbar.setTitle(null);
In order to surely remove the title you need:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setDisplayShowTitleEnabled(false);
Source: https://ru.stackoverflow.com/questions/555612/
toolbar.setTitle(" ");
This is for a specificActivity
. - iFr0ztoolbar.setTitle(null);
- iFr0z