Skip to content

Instantly share code, notes, and snippets.

@mitchwongho
Created March 7, 2014 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitchwongho/9410253 to your computer and use it in GitHub Desktop.
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
<?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