FragmentTransactionExtended icon indicating copy to clipboard operation
FragmentTransactionExtended copied to clipboard

Support for android.support.v4.app.Fragment

Open vanlooverenkoen opened this issue 7 years ago • 0 comments

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?

vanlooverenkoen avatar Jun 04 '17 15:06 vanlooverenkoen