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
Look into doing it through a theme. You can define enter exit animations for activities or the entire application
I override pending transition just after calling finish();
In my case, I have done it to avoid transitions.
finish();
Details.this.overridePendingTransition(R.anim.nothing,R.anim.nothing);
Order is important :)