DesarrolloAntonio / FragmentTransactionExtended

FragmentTransactionExtended is a library which provide us a set of custom animations between fragments.
Apache License 2.0
1.08k stars 233 forks source link

Support for android.support.v4.app.Fragment #13

Open vanlooverenkoen opened 7 years ago

vanlooverenkoen commented 7 years ago
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?