I am struggling to remove a single fragment that I add dynamically when I have multiple fragments.
For examples: MainActivty Inflate FragA Inflate FragB Inflate FragC
Now how do I just delete fragment A?
Using popBackStack kills all three and getSupportFragmentManager().beginTransaction().remove(TAG).commit();
also seems to do thae same thing
How are you meant to do this correctly? I am trying to keep multiple backstacks persistent over tabs