Disable fragment back stack animations - Android

1.2k Views Asked by At

How are you able to disable all fragment animations including the exit animation when clearing the back stack, currently I am using the following code but it doesn't seem to stop the animation exiting the screen, rather it only stops the animation of the new fragment entering the screen.

The code that I'm using is as follows:

Menu Fragment - code used to clear back stack

    private void clearBackStack() {
        FragmentUtils.sDisableFragmentAnimations = true;
        getSupportFragmentManager().popBackStackImmediate(null, FragmentManager.POP_BACK_STACK_INCLUSIVE);
        FragmentUtils.sDisableFragmentAnimations = false;
    }

Fragment Utils Class:

public class FragmentUtils {
    public static boolean sDisableFragmentAnimations = false;
}

All fragments have this:

@Override
public Animation onCreateAnimation(int transit, boolean enter, int nextAnim) {
    if (FragmentUtils.sDisableFragmentAnimations) {
        Animation a = new Animation() {};
        a.setDuration(0);
        return a;
    }
    return super.onCreateAnimation(transit, enter, nextAnim);
}

Navigation menu code (where I want to disable the animations)

    bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
        @Override
        public boolean onNavigationItemSelected(@NonNull MenuItem item) {
            switch (item.getItemId()) {
                case R.id.action_events:

                    replaceFragment(new MainFragment());

                    break;
                case R.id.action_promotions:

                    replaceFragment(new MainFragment());
                    break;

                case R.id.action_menu:

                    clearBackStack();
                    replaceFragment(new MenuFragment());
                    break;

            }
            return true;
        }
    });
1

There are 1 best solutions below

1
On
public void replaceFragment(BaseFragment fragment, int resId, boolean addToBackStack) {
    FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
    transaction.setCustomAnimations(0, 0);
    transaction.replace(resId, fragment);
    if (addToBackStack) {
        transaction.addToBackStack(null);
    }
    transaction.commitAllowingStateLoss();
}