Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm converting an app to use fragments using the compatibility library. Now currently I have a number of activities (A B C D) which chain onto one another, D has a button 'OK' which when pressed calls finish which then bubbles up through onActivityResult to additionally destroy C and B.

For my pre Honycomb fragment version each activity is effectively a wrapper on fragments Af Bf Cf Df. All activities are launched via startActivityForResult and onActivityResult within each of the fragments can happily call getActivity().finish

The problem that I am having though is in my Honeycomb version I only have one activity, A, and fragments Bf, Cf, Df are loaded using the FragmentManager.

What I don't understand is what to do in Df when 'OK' is pressed in order to remove fragments Df, Cf, and Bf?

I tried having the fragment popping itself off the stack but this resulted in an exception. onActivityResult is useless because I have not loaded up the fragment using startActivityForResult.

Am I thinking about this completely the wrong way? Should I be implementing some sort of listener that communicates with either the parent fragment or activity in order to do the pop using the transaction manager?

Thanks in advance. Peter.

share|improve this question

3 Answers

up vote 19 down vote accepted

What I don't understand is what to do in Df when 'OK' is pressed in order to remove fragments Df, Cf, and Bf?

Step #1: Have Df tell D "yo! we got the OK click!" via calling a method, either on the activity itself, or on an interface instance supplied by the activity.

Step #2: Have D remove the fragments via FragmentManager.

The hosting activity (D) is the one that knows what other fragments are in the activity (vs. being in other activities). Hence, in-fragment events that might affect the fragment mix should be propagated to the activity, which will make the appropriate orchestration moves.

share|improve this answer
But in my Honeycomb version there is no D, that's my difficultly. There is simply an activiy A which loads fragment Bf, which loads Cf, which loads Df using FragmentTransaction. – PJL May 5 '11 at 17:03
@PJL: Sorry, I meant A. This is one reason to use a listener interface, so multiple activities can all respond to the "we got the OK click" event from Df. – CommonsWare May 5 '11 at 17:18
As I'm currently porting I called a listener method from fragments Df's onActivityResult method into the activity whereupon I then called popBackStack on the FragmentManager. However, this results in an exeption "IllegalStateException: Can not perform this action after onSaveInstanceState'. Any ideas as to how I can overcome this? – PJL May 6 '11 at 10:53
OK because I'm launching an activity, E, in front my main one (A) then I get a call to A:onSaveInstanceState which means that I can't call popBackStack. What I don't understand then is if A loads Bf, Cf, Df which in turns fires off activiy E which fills the entire screen, then how to destroy the fragment stack? Again perhaps I'm approaching this in the wrong way? – PJL May 6 '11 at 11:29
@PJL: You should leave the fragments alone if you are firing off a new activity. That way, when the user returns to the original activity, everything was as the user left it, as the user will probably expect. Frankly, I think your problem is trying to do a wizard-like flow as a series of fragments all simultaneously on the screen. – CommonsWare May 6 '11 at 14:23

While it might not be the best approach the closest equivalent I can think of that works is this with the support/compatibility library

getActivity().getSupportFragmentManager().beginTransaction().remove(this).commit();

or

getActivity().getFragmentManager().beginTransaction().remove(this).commit();

otherwise.

In addition you can use the backstack and pop it. However keep in mind that the fragment might not be on the backstack (depending on the fragmenttransaction that got it there..) or it might not be the last one that got onto the stack so popping the stack could remove the wrong one...

share|improve this answer
While this approach works, if you are using addToBackStack(null) it will leave the back button handler +1. So you'll have to press it twice. – user123321 Oct 18 '12 at 1:54
So can you avoid that somehow? – Manfred Moser Oct 18 '12 at 7:57
9  
"pop" the fragment from the FragmentManager. – user123321 Oct 25 '12 at 18:34
edit: deleted this comment – Apfelsaft Apr 15 at 9:28

You can use the approach below, it works fine:

getActivity().getSupportFragmentManager().popBackStack();
share|improve this answer
5  
This answer is like 10 times better than the accepted one - straight to the point. – kape123 Feb 26 at 5:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.