Estou brincando com fragmentos no Android.
Eu sei que posso alterar um fragmento usando o seguinte código:
FragmentManager fragMgr = getSupportFragmentManager();
FragmentTransaction fragTrans = fragMgr.beginTransaction();
MyFragment myFragment = new MyFragment(); //my custom fragment
fragTrans.replace(android.R.id.content, myFragment);
fragTrans.addToBackStack(null);
fragTrans.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE);
fragTrans.commit();
Minha pergunta é, em um arquivo Java, como posso obter a instância do Fragment exibida no momento?