summaryrefslogtreecommitdiff
path: root/res/anim
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-11-23 15:51:15 +0300
committerAndrew Dolgov <[email protected]>2011-11-23 15:51:15 +0300
commitacd27869614a60610a93f59dbf6869059ee5dc81 (patch)
tree7726d8814e0dced0ccf9efcbc3dfba4c8b1bad23 /res/anim
parentfd99cbdd0c087299d5d3aac691d71f782f23d1ba (diff)
implement displaying articlefragment
Diffstat (limited to 'res/anim')
-rw-r--r--res/anim/slide_in_left.xml4
-rw-r--r--res/anim/slide_out_right.xml11
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>
+