Last active
July 26, 2017 18:06
-
-
Save patrick-elmquist/c1d568bf918421ab68dddab793f91c13 to your computer and use it in GitHub Desktop.
Enter animation demo: Slide form bottom 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
<?xml version="1.0" encoding="utf-8"?> | |
<set xmlns:android="http://schemas.android.com/apk/res/android" | |
android:duration="@integer/anim_duration_long"> | |
<translate | |
android:interpolator="@android:anim/accelerate_decelerate_interpolator" | |
android:fromYDelta="50%p" | |
android:toYDelta="0" | |
/> | |
<alpha | |
android:fromAlpha="0" | |
android:toAlpha="1" | |
android:interpolator="@android:anim/accelerate_decelerate_interpolator" | |
/> | |
</set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment