Animate the transition between fragments

前端 未结 8 1176
梦如初夏
梦如初夏 2020-11-22 14:59

I\'m trying to animate the transition between fragments. I got the answer from the following
Android Fragments and animation

FragmentTransaction ft = g         


        
8条回答
  •  一整个雨季
    2020-11-22 15:15

    Here's a slide in/out animation between fragments:

    FragmentTransaction transaction = getFragmentManager().beginTransaction();
    transaction.setCustomAnimations(R.animator.enter_anim, R.animator.exit_anim);
    transaction.replace(R.id.listFragment, new YourFragment());
    transaction.commit();
    

    We are using an objectAnimator.

    Here are the two xml files in the animator subfolder.

    enter_anim.xml

    
    
         
    
    

    exit_anim.xml

    
    
        
    
    

    I hope that would help someone.

提交回复
热议问题