I have three fragment in an Activity C. they are behaving as tabs. I have to go from a fragment to a new Activity X. Now i want to come back to fragment from Activity X.
In the activity you have started from your fragment, you can do the following:
@Override public boolean onOptionsItemSelected(MenuItem item) { //do whatever you want here finish(); return true; }
That works for me :)