I need to achieve this effect in the Toolbar:
This is the code I use to call Toolbar
:
//...
Toolbar myToolbar = (Toolbar) findViewById(R.id.toolbarMap);
setSupportActionBar(myToolbar);
myToolbar.setTitleTextColor(getResources().getColor(R.color.textColor));
getSupportActionBar().setTitle(R.string.map_title);
myToolbar.setNavigationIcon(getResources().getDrawable(R.drawable.back));
myToolbar.setNavigationOnClickListener(new View.OnClickListener() {
//...