In my application suppose I have 3 activities A,B,C.
In application from Activity A it goes to B and from B to C.
Now what I want is if user is at Activity C.
When it click button it should go to Activity B.I had achieved this by calling finish()
. But in Activity C I am getting response from Server. Now what I want is after getting response activity A has to be called.(without storing history of activity B in stack). How to achieve this?