What I\'m trying to achieve is to override the start activity animation.
The animation should give the impression that the old activity is on top of the new activity
The solution that works for me:
R.anim.exit_slide_down
...and then
Intent intent = new Intent(activity, SecondActivity.class); startActivity(intent); activity.overridePendingTransition(0, R.anim.exit_slide_down);