I cannot find a tutorial about adding this button in the Action bar in Material Design.
How can I add this into the action bar on Lollipop?
try this
in on create:
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
in your activity class (assuming you want to close this activity)
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
Material Design Tutorial This will give you brief idea how to implement material app.
If you are using ActionBarActivity
with AppCompat Theme
use:
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
Also you may have to call setHomeButtonEnabled(true)
in same manner.
It will look like this:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With