I need to change the layouts in my activity (fire them in one action). I put animations between them as
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator"> <translate android:fromXDelta="100%" android:toYDelta="0" android:duration="300" /> <alpha android:fromAlpha="0.1" android:toAlpha="1.0" android:duration="300" /> </set>
Is there any way to find that it has default activity transition animations on the phone?
Damir source share