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
Back
if you want no animation
follow the code in Activity
Activity
@Override public void onBackPressed() { super.onBackPressed(); overridePendingTransition(0,0); }
Reference : https://developer.android.com/reference/android/app/Activity.html#overridePendingTransition(int, int)