Make activity animate from top to bottom

前端 未结 4 1596
庸人自扰
庸人自扰 2020-12-04 13:00

I am writing an Android app where I want the activity to appear by animating in from the bottom of the screen to the top. I am able to do this with code from here:

4条回答
  •  遥遥无期
    2020-12-04 13:32

    you can vice-versa your transition by overriding the Transition in your onPause() :

    @Override
    protected void onPause()
    {
        super.onPause();
        overridePendingTransition(R.anim.appear_from_bottom, R.anim.disappear_to_bottom);
    
    }
    

提交回复
热议问题