Reputation: 4284
Can any one help me. I have a Fragment say FRAGMENT A and am adding it to a layout dynamically...Suppose i have added 3 instance of FRAGMENT A to that layout.Then How i can Remove that 3 Fragment instance programmatically.I tried google searches and also another stackoverflow threads but they are not working..
PLease help me
Thank you
Upvotes: 9
Views: 14663
Reputation: 39836
it's actually pretty simple:
let's say you added the fragment like this:
fragmentTransac.add(R.id.content, fragA);
instead, you'll add it with a TAG too
fragmentTransac.add(R.id.content, new FragA(), "first");
// then the other
fragmentTransac.add(R.id.content, new FragA(), "second");
then to remove:
Fragment f = getFragmentManager().findFragmentByTag("first");
if(f!=null) fragmentTransac.remove(f);
fragmentTransac.commit();
happy coding =]
Upvotes: 27