Activity sliding from bottom to top but background activity should not moved

前端 未结 3 1952
温柔的废话
温柔的废话 2021-01-31 03:25

I am trying to slide an Activity from Bottom to Top which I am able to do.

But while sliding from bottom to top my background activity is also sliding to bottom. I want

3条回答
  •  一个人的身影
    2021-01-31 03:59

    Then provide an outgoing animation to make the current Activity stay still:

    overridePendingTransition(R.anim.slide_in_up, R.anim.stay);
    

    stay.xml:

    
    
    

提交回复
热议问题