Last active
June 23, 2018 05:06
-
-
Save patrick-elmquist/85a1281b0f8365e9ce161df8c20aed3b to your computer and use it in GitHub Desktop.
Enter animation demo: Slide from the right demo
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/decelerate_interpolator" | |
android:fromXDelta="100%p" | |
android:toXDelta="0" | |
/> | |
<alpha | |
android:fromAlpha="0.5" | |
android:toAlpha="1" | |
android:interpolator="@android:anim/accelerate_decelerate_interpolator" | |
/> | |
</set> |
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"?> | |
<layoutAnimation | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:animation="@anim/item_animation_from_right" | |
android:delay="10%" | |
android:animationOrder="normal" | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment