1
To remove the arrow from Toolbar
, just add this line of code into the onCreate()
of his Activity
:
getSupportActionBar().setDisplayHomeAsUpEnabled(false);
Add after you set Toolbar
as ActionBar
.
3
To remove the arrow from Toolbar
, just add this line of code into the onCreate()
of his Activity
:
getSupportActionBar().setDisplayHomeAsUpEnabled(false);
Add after you set Toolbar
as ActionBar
.
Browser other questions tagged java android
You are not signed in. Login or sign up in order to post.
Thank you very much Luiz, it worked!
– Weslley
You’re welcome, happy to help. Don’t forget to mark as the right answer! ;)
– Luiz