Android Activity Transition Animation
问题 What I am trying to achieve is : start a new activity with a transition animation for the exiting activity only . I would like to slide up the current activity, where the new activity will be behind the current one. Here is the slide up animation : R.layout.slide_up <set xmlns:android="http://schemas.android.com/apk/res/android"> <translate android:duration="1000" android:fromYDelta="0%" android:toYDelta="100%" /> </set> Here is how I am applying the activity animation transition :