Display Activity From Bottom to Top

后端 未结 3 672
执念已碎
执念已碎 2020-11-29 18:41

I want to display one activity to another from bottom to top animation using Intent.

Given me some example for that like below

<         


        
3条回答
  •  北荒
    北荒 (楼主)
    2020-11-29 19:22

    As i googled sliding up transition and landed here but Mark answer is incomplete without transition involved on coming back to the same activity.

    Overide finish in activity

    @Override
    public void finish() {
        super.finish();
        overridePendingTransition(R.anim.slide_from_top,R.anim.slide_in_top);
    }
    

    finish()

     if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                    finishAfterTransition();
                }else finish();
    

    slide_from_top.xml

    
    

    slide_in_top.xml

    
    

提交回复
热议问题