I have a fragment;
MyFragment myFrag = new MyFragment();
I put bundle data to this fragment:
remove() change fragment status to de-actiive. In your case, you just didn't call commit() after remove(..).
fragmentTransaction.remove(activeFragment);
You would do commit() after remove(), too.
fragmentTransaction.remove(activeFragment).commit();