Skip to content

Instantly share code, notes, and snippets.

View gejiaheng's full-sized avatar

Jiaheng gejiaheng

  • United States
View GitHub Profile
@gejiaheng
gejiaheng / gist:8d34469298cadfb061cfed074127a7ee
Last active September 28, 2016 03:25 — forked from orhanobut/gist:8665372
Up down animation for dialog fragment
// Slide up animation
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@android:integer/config_mediumAnimTime"
android:fromYDelta="150%"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:toYDelta="0" />