Android Left to Right slide animation

前端 未结 9 1098
旧时难觅i
旧时难觅i 2020-11-22 08:18

I have three activities whose launch modes are single instance.
Using onfling(), I swing them left and right.

The problem is when I swipe right to

9条回答
  •  我在风中等你
    2020-11-22 08:58

    Use this xml in res/anim/

    This is for left to right animation:

    
      
    
    

    This is for right to left animation:

    
      
    
    

    In your coding use intent like for left to right:

    this.overridePendingTransition(R.anim.animation_enter,
                       R.anim.animation_leave);
    

    In your coding use intent like for right to left

    this.overridePendingTransition(R.anim.animation_leave,
                                   R.anim.animation_enter);
    

提交回复
热议问题