Event when the FragmentTransaction is completed

lopez.mikhael picture lopez.mikhael · Nov 1, 2013 · Viewed 32.6k times · Source

Is it possible to have an event when the FragmentTransaction is completed ?

FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
ft.replace(R.id.content_frame, fragment).commit();

In fact, I use a Drawer for my application and I would like to trigger invalidateOptionsMenu(); when the transaction is completed to change the menu of my action bar.

Answer

Eldhose M Babu picture Eldhose M Babu · Nov 1, 2013

You don't need to wait for the fragment transaction to complete, You can call

getSupportFragmentManager().executePendingTransactions();

after your commit() function call.

This will ensure that the transaction is complete.