I\'m using the recommended approach for Up Navigation and my code looks like this:
@Override public boolean onOptionsItemSelected(MenuItem item) { switc
you just need to go back , not to create the activity again.
@Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: super.onBackPressed(); return true; } return super.onOptionsItemSelected(item); }