Custom Back Button Animation

后端 未结 4 744
孤街浪徒
孤街浪徒 2020-12-14 00:13

The default animation when the Back button is pressed is a slide from left to right. I\'d like to replace that with a custom animation. I\'m currently thinking

4条回答
  •  南笙
    南笙 (楼主)
    2020-12-14 00:25

    I think you shouldn't use finish() because the data stored by the Views will be erased

    @Override
    public void onBackPressed() {
        super.onBackPressed();
        overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit);
    }
    

提交回复
热议问题