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
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 :)