Remove title in Toolbar in appcompat-v7 Remove title in Toolbar in appcompat-v7 android android

Remove title in Toolbar in appcompat-v7


getSupportActionBar().setDisplayShowTitleEnabled(false);


The correct way to hide/change the Toolbar Title is this:

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

This because when you call setSupportActionBar(toolbar);, then the getSupportActionBar() will be responsible of handling everything to the Action Bar, not the toolbar object.

See here


Try this...

 @Override protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_landing_page);     .....    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_landing_page);    setSupportActionBar(toolbar);    getSupportActionBar().setDisplayShowTitleEnabled(false);    ..... }