I\'m using overridePendingTransition for when my activity is created and that works fine I can see the fade in works great, but when I try and animate the finish on the acti
This question has already answered but the most efficient way to put an animation while exiting from an activity is by overriding the "finish()" method of the related activity:
@Override
public void finish() {
super.finish();
overridePendingTransition(R.anim.hold, R.anim.slide_out_bottom);
}