There are no answers ... on 4+ devices that I tried, animation is a gradual disappearance with increasing or decreasing scale ...
I added the code manually, where I wanted to create a slide animation:
//open activity startActivity(new Intent(this, MyActivity.class)); overridePendingTransition(R.anim.right_slide_in, R.anim.left_slide_out);
xml animation from right to left:
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator" > <translate android:duration="300" android:fromXDelta="100%p" android:toXDelta="0" /> </set>
xml animation from left to right:
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_decelerate_interpolator" > <translate android:duration="300" android:fromXDelta="0" android:toXDelta="-100%p" /> </set>
Mirko
source share