Custom Back Button Animation

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

    if you want no animation

    follow the code in Activity

    @Override
    public void onBackPressed() {
        super.onBackPressed();
        overridePendingTransition(0,0);
    }
    

    Reference : https://developer.android.com/reference/android/app/Activity.html#overridePendingTransition(int, int)

提交回复
热议问题