aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/animator/fade_right_out.xml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/main/res/animator/fade_right_out.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/res/animator/fade_right_out.xml b/src/main/res/animator/fade_right_out.xml
new file mode 100644
index 000000000..3d83be942
--- /dev/null
+++ b/src/main/res/animator/fade_right_out.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+ android:duration="200"
+ android:shareInterpolator="@android:anim/accelerate_decelerate_interpolator">
+ <objectAnimator
+ android:propertyName="translationX"
+ android:valueFrom="0"
+ android:valueTo="200"
+ android:valueType="floatType" />
+ <objectAnimator
+ android:propertyName="alpha"
+ android:valueFrom="1"
+ android:valueTo="0"
+ android:valueType="floatType" />
+</set> \ No newline at end of file