I am writing an Android app where I want the activity to appear by animating in from the bottom of the screen to the top. I am able to do this with code from here:
you can vice-versa your transition by overriding the Transition in your onPause() :
@Override protected void onPause() { super.onPause(); overridePendingTransition(R.anim.appear_from_bottom, R.anim.disappear_to_bottom); }