FragmentTransactionExtended
FragmentTransactionExtended copied to clipboard
Support for android.support.v4.app.Fragment
FragmentManager fm = getFragmentManager();
FragmentTransaction fragmentTransaction = fm.beginTransaction();
FragmentTransactionExtended fragmentTransactionExtended = new FragmentTransactionExtended(this, fragmentTransaction, firstFragment, secondFragment, R.id.fragment_place);
fragmentTransactionExtended.addTransition(FragmentTransactionExtended.GLIDE);
fragmentTransactionExtended.commit();
Does not work with Fragments from android.support.v4.app.Fragment. Can you get it working with that as well?