Fragment transaction animation: slide in and slide out

前端 未结 6 1445
梦谈多话
梦谈多话 2020-11-27 09:44

I\'ve check some tutorials for animate transaction between fragments. I\'ve used this method for animation and it works:

fragmentTransaction.setCustomAnimatio         


        
6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 10:07

    I have same issue, i used simple solution

    1)create sliding_out_right.xml in anim folder

      
        
            
            
        
    

    2) create sliding_in_left.xml in anim folder

    
    
        
        
    
    

    3) simply using fragment transaction setCustomeAnimations() with two custom xml and two default xml for animation as follows :-

     fragmentTransaction.setCustomAnimations(R.anim.sliding_in_left, R.anim.sliding_out_right, android.R.anim.slide_in_left, android.R.anim.slide_out_right );
    

提交回复
热议问题