I have three activities Activity A, B and C. Activity C can be launched from Activity A and also from Activity B.
Now, the up navigation button on Activity C should take me to that activity which started it. Since the parent activity for C is dynamic I cannot specify the parentActivity
in the activity tag of C inside the manifest file.
How can I handle up UpNavigation
for an Activity whose parent activity changes ?
Edit
The following SO question is somewhat similar to mine but the answer made me understand the concept correctly. Here is that question