Search code examples
androidanimationandroid-activity

Override animation of finishing an activity


I'd like to animate an activity in my app. This is absolutely fine if I start the activity, but when I try to finish it, android shows me first the standard and then the fade animation.

@Override
public void onBackPressed() {
    super.onBackPressed();
    overridePendingTransition(android.R.anim.fade_out, android.R.anim.fade_in);
}

Do you have an answer for me?


Solution

  • Try overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out); These animations are for 2 Activitys.

    1. For the one which is started
    2. For the one which is finished

    I hope I understand it right