Skip to content

Animate Fragment transitions with custom animations

rutura edited this page Apr 16, 2017 · 1 revision
     FragmentTransaction transaction =
                getSupportFragmentManager().beginTransaction();

        //Add the animation
        transaction.setCustomAnimations(R.anim.activity_open_enter,
                R.anim.activity_open_exit);

        //end of animation

        transaction
                .replace(R.id.fragment_container, fragment2);
        transaction.commit();
Clone this wiki locally