I am using overridePendingTransition method to perform custom Activity animations.
I would like to know when the animation ends ( a callback/listener )
After unsuccessfully browsing Google for this question, I've found a solution by going through all override-methods.
So what I did, was overriding this method in the activity that is entering the screen:
Requires API level 21
@Override
public void onEnterAnimationComplete() {
super.onEnterAnimationComplete();
}