Activity 1:
A ListView that show list of friends.
After onClick() of an item in the friend list, it will go to Activity 2 which is ProfileActivity showing the details of such friend.
Activity 2 (ProfileActivity):
And there is a Button, after onClick(), will go to Activity 3 (NearByActivity) which shows list of twenty nearby friends within 10km.
Activity 3 (NearByActivity):
After onClick() of an item, it will go to Activity 2 (ProfileActivity).
The story is that from Activity 2 to Activity3, I don't want to finish() Activity 2 before start Activity because user may want to go back.
So, the question is:
How to finish the Activity2 if user click any item in Activity 3 so that preventing Activity 2 -> Activity 3 -> Activity 2 -> Activity 3...
Although Activity 2 will call many times, the profile details is depending on which user is clicked.
Or any other suggestion??
