Forked from patrick-elmquist/item_animation_fall_down.xml
Created
February 10, 2019 19:09
-
-
Save rakave/f110cb4151c3aa78f96ef3d5f103ff08 to your computer and use it in GitHub Desktop.
Enter animation demo: Fall Down item animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <set xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:duration="@integer/anim_duration_medium"> | |
| <translate | |
| android:fromYDelta="-20%" | |
| android:toYDelta="0" | |
| android:interpolator="@android:anim/decelerate_interpolator" | |
| /> | |
| <alpha | |
| android:fromAlpha="0" | |
| android:toAlpha="1" | |
| android:interpolator="@android:anim/decelerate_interpolator" | |
| /> | |
| <scale | |
| android:fromXScale="105%" | |
| android:fromYScale="105%" | |
| android:toXScale="100%" | |
| android:toYScale="100%" | |
| android:pivotX="50%" | |
| android:pivotY="50%" | |
| android:interpolator="@android:anim/decelerate_interpolator" | |
| /> | |
| </set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment