How to know which parent activity calls the child activity in android?
Assume I have three activities A,B and C. A and B are parent activities. C is the child activity. That means C can be started by either from A or B.
So how can I know which parent activity causes to start the child activity?
The problem is I need to set the back button according to that parent intent.For that I want to override getSupportParentActivityIntent() method and it needs the intent object to start again the parent activity.
Here is the method description in android site
How to get the parent activity to correctly override the getSupportParentActivityIntent() method?
Thanks.