i have 2 activities, and i want to create an animated transition between the two activities such that both activities\'s views slides up as if the second activity is pushing the
Nevermind, that was a dumb error - i didn't understand what the documentation meant by "entering animation" vs "exiting animation". i need to swap the xmls by changing:
FirstActivity.this.overridePendingTransition(R.anim.slide, R.anim.slide2);
into
FirstActivity.this.overridePendingTransition(R.anim.slide2, R.anim.slide);