pop back stack fragment android

Solutions on MaxInterview for pop back stack fragment android by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "pop back stack fragment android"
Roberta
01 Sep 2017
1 public void removeFragmentbyTag(String myFrag){
2
3 FragmentManager manager = getActivity().getSupportFragmentManager();
4 FragmentTransaction trans = manager.beginTransaction();
5 trans.remove(myFrag);
6 trans.commit();
7 manager.popBackStack();
8}