Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled( true);
getSupportActionBar().setHomeButtonEnabled( true);
@Override
public boolean onOptionsItemSelected(MenuItem item) {
/*when click the app icon change the drawer state*/
if(item.getItemId() == android.R.id.home){
finish();
return true ;
}
return super .onOptionsItemSelected(item);
}