diff options
Diffstat (limited to 'res/anim')
| -rw-r--r-- | res/anim/slide_in_left.xml | 4 | ||||
| -rw-r--r-- | res/anim/slide_out_right.xml | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/res/anim/slide_in_left.xml b/res/anim/slide_in_left.xml index 1018058f..10a16677 100644 --- a/res/anim/slide_in_left.xml +++ b/res/anim/slide_in_left.xml @@ -2,9 +2,9 @@ <set> <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" - android:propertyName="x" + android:propertyName="width" android:duration="500" - android:valueFrom="-400" + android:valueFrom="400" android:valueTo="0" android:valueType="intType"/> </set> diff --git a/res/anim/slide_out_right.xml b/res/anim/slide_out_right.xml new file mode 100644 index 00000000..cc43178e --- /dev/null +++ b/res/anim/slide_out_right.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> + +<set> + <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android" + android:propertyName="x" + android:duration="500" + android:valueFrom="0" + android:valueTo="-400" + android:valueType="intType"/> +</set> + |