diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-10-07 19:23:48 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-10-07 19:23:48 -0700 |
commit | 118e56a51b35ac7262b4de38d0ac0e00f8952b20 (patch) | |
tree | 09b97cbc8d7388fc57c079fb96a3545c867d1cd1 /res/anim/enter_from_left.xml | |
parent | 50292a33938016f410effcb8f0aca1c6263e8410 (diff) | |
parent | 72f9f2bf4f431b790490fe1ddb8820c478a66801 (diff) | |
download | dsub-118e56a51b35ac7262b4de38d0ac0e00f8952b20.tar.gz dsub-118e56a51b35ac7262b4de38d0ac0e00f8952b20.tar.bz2 dsub-118e56a51b35ac7262b4de38d0ac0e00f8952b20.zip |
Merge branch 'Transition'
Diffstat (limited to 'res/anim/enter_from_left.xml')
-rw-r--r-- | res/anim/enter_from_left.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/res/anim/enter_from_left.xml b/res/anim/enter_from_left.xml new file mode 100644 index 00000000..2d5c1737 --- /dev/null +++ b/res/anim/enter_from_left.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shareInterpolator="false">
+
+ <translate
+ android:fromXDelta="-100%" android:toXDelta="0%"
+ android:duration="@android:integer/config_shortAnimTime"
+ android:interpolator="@android:anim/accelerate_interpolator"/>
+
+ <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
+ android:duration="@android:integer/config_shortAnimTime" />
+</set>
\ No newline at end of file |