Muy cerca de lo que quiere, que tenía que añadir fragmento (al final) a un ViewPager, e hizo esto:
FragmentTransaction ft = fragmentManager.beginTransaction();
new_fragment = Fragment.instantiate(activity, class_name, args);
// The below code removes old fragment and adds the new one at the end.
ft.attach(new_fragment); // <- this adds the fragment at the end
ft.detach(old_fragment); // <- this removes old fragment
// This should be what you're looking for when adding to an Activity instead of a ViewPager
ft.replace(view_id, new_fragment); // <- this is supposed to replace the fragment attached to view_id
// Or if the replace does not work, this might work:
ft.detach(old_fragment);
ft.add(view_id, new_fragment);
// Not to be forgotten: ;)
ft.commit();
El código anterior podría necesitar algunos ajustes, puede que sólo requieren la reemplazar llamada para trabajar efectivamente?
Si falla la llamada de reemplazo, aún puede separar todos los fragmentos y volverlos a colocar en el orden deseado.