I have a back stack of a few fragments and I need to know that I have returned to one from another.
Similar to when you have onActivityResult
I was wondering if you could have a check for popBackStack()
calls in a fragment?
I call it in another fragment here:
@Override
public void postFinished(){
getFragmentManager().popBackStack();
}
Anything like this in android java?