ActionBar ‘up’ button destroys parent activity, ‘back’ does not

In the android manifest.xml adding the following attribute for the parent activity tag worked for me.

android:launchMode="singleTop"

Reference : http://developer.android.com/guide/topics/manifest/activity-element.html

Refer the similar question:
How can I return to a parent activity correctly?

Leave a Comment