Do you know how I can clear all fragments in activity, in layout and in backstack.
I know that we can clear the backstack using:
FragmentManager.popBackStack(null, FragmentManager.POP_BACK_STACK_INCLUSIVE);
But what about the layout, which I dynamically added to the layout.
source
share