ToolBar Android

1

Personally, I wanted to be able to take the

asked by anonymous 23.11.2015 / 19:28

1 answer

3

To remove the arrow from Toolbar , simply add this line of code to onCreate() of your Activity :

getSupportActionBar().setDisplayHomeAsUpEnabled(false);

Add after set Toolbar to ActionBar .

    
23.11.2015 / 19:53