How to navigate up to the same parent state
The “standard” behaviour for an android activity is, that a new instance of the activity is created, every time there is a new intent for this activity (see launchMode-docu here). Because of this your extras seem to be gone, if you call navigateUpTo. In your case, I would advise to use android:launchMode=”singleTop” for your parent … Read more