I have a relatively simple Android app with one Activity showing a list of items and another showing details of a selected item. I start the list activity, whi
Activity
You can override what the actionbar up button should do like:
public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case android.R.id.home: onBackPressed(); return true; } return super.onOptionsItemSelected(item); }
And recreate the back button effect.