How to remove animation transitions between the Activity? When you open the Activity, you removed the animation. And how to remove the Activity closing animation now? Eg Can it be possible to prescribe in the manifesto a ban on the Activity transition animation?

1 answer 1

In the second activity, register as follows:

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

or so:

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