Estoy usando la muestra de Android, FragmentTabs.Pantalla FragmentActivity Tab Blackout
Digamos que hay 4 pestañas (A, B, C, D). Puedo reemplazar el fragmento de pestaña (A) con otro (E), mediante el uso de este código
FragmentTransaction transaction = getFragmentManager()
.beginTransaction();
transaction.replace(R.id.realtabcontent, newFragment);
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.addToBackStack(null);
// Commit the transaction
transaction.commit();
En otra pestaña C, cuando se presiona el botón trasero de la pantalla de la ficha (A) se convierten en negro.
[aquí Android con fragmentos] (http://android.codeandmagic.org/2011/07/android -tabs-with-fragments /) y también vea este sitio para desarrolladores [Fragments] (http://developer.android.com/guide/topics/fundamentals/fragments.html) Espero que lo ayude. –