@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
//action
break;
}
return super.onOptionsItemSelected(item);
}
How can I change the Icon from the Back Button (android.R.id.home) in OptionsMenu?
Thank you!