Android Left to Right slide animation

前端 未结 9 1051
旧时难觅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:50

    For from right to left slide

    res/anim/in.xml:

    
    
       
    
    

    res/anim/out.xml:

    
    
       
    
    

    in Activity Java file:

    Intent intent = new Intent(HomeActivity.this, ActivityCapture.class);
    startActivity(intent);
    overridePendingTransition(R.anim.in,R.anim.out);
    

    you can change the duration times in the xml files for the longer or shorter slide animation.

提交回复
热议问题