Custom Back Button Animation

后端 未结 4 741
孤街浪徒
孤街浪徒 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:30

    Figured it out. I wasn't finshing the current activity. The following code does the trick.

    @Override
    public void onBackPressed() {
      [This Activity].this.finish();
      overridePendingTransition(R.anim.fade_in, R.anim.fade_out);
    }
    

提交回复
热议问题