FragmentTransactionExtended icon indicating copy to clipboard operation
FragmentTransactionExtended copied to clipboard

FragmentTransactionExtended is a library which provide us a set of custom animations between fragments.

Results 8 FragmentTransactionExtended issues
Sort by recently updated
recently updated
newest added

unable to create file fragmentTransactionExample/build/intermediates/exploded-aar/FragmentTransactionExtended_ASCompat/libraryFragmentTransactionExtended/unspecified/res/animator/slide_fragment_horizontal_left_out.xml: Filename too long unable to create file fragmentTransactionExample/build/intermediates/exploded-aar/FragmentTransactionExtended_ASCompat/libraryFragmentTransactionExtended/unspecified/res/animator/slide_fragment_horizontal_right_in.xml: Filename too long unable to create file fragmentTransactionExample/build/intermediates/exploded-aar/FragmentTransactionExtended_ASCompat/libraryFragmentTransactionExtended/unspecified/res/animator/slide_fragment_horizontal_right_out.xml: Filename too long unable to create file fragmentTransactionExample/build/intermediates/exploded-aar/FragmentTransactionExtended_ASCompat/libraryFragmentTransactionExtended/unspecified/res/animator/zoom_slide_horizontal_tablet_left_in.xml: Filename...

This whole project is build using android.app.fragment. So this project cannot be used when fragments are created using android.support.v4.app.fragment. Is there any way for this project to be compatible with...

``` 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...

There has to be a choice if developer wants to add the fragment to backstack, it adds all the fragments to backstack and there is nothing we can do about...

There was no way to add tags to the fragment being placed in the container during a FragmentTransactionExtended transaction. I created a new constructor that accepts a tag as a...

Hello , Thanks so much for the awesome library. I have a problem is that each time I apply the animation I see onCreateView in recalled. meaning that fragment is...

Sometimes you don't want the fragment transaction to add to the back stack. using these changes it's easy to have them not add.

Hi DesarrolloAntonio, this is not an issue but I want to tell you that I modified your library to be compatible with Android 10 and lower, because my project supports...