Created
March 7, 2014 12:02
-
-
Save mitchwongho/9410253 to your computer and use it in GitHub Desktop.
Android anim to animate a view sliding in from the bottom. Companion to slide_in_bottom.xml
This file contains 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"> | |
<translate android:fromYDelta="0%p" android:toYDelta="100%p" android:duration="600"/> | |
<alpha android:fromAlpha="1.0" android:toAlpha="5.0" /> | |
</set> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment