summaryrefslogtreecommitdiffstats
path: root/examples/qmlandroid/catalog/android/res/anim/awesome.xml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qmlandroid/catalog/android/res/anim/awesome.xml')
-rw-r--r--examples/qmlandroid/catalog/android/res/anim/awesome.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/qmlandroid/catalog/android/res/anim/awesome.xml b/examples/qmlandroid/catalog/android/res/anim/awesome.xml
new file mode 100644
index 0000000..ee6d387
--- /dev/null
+++ b/examples/qmlandroid/catalog/android/res/anim/awesome.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shareInterpolator="false" >
+
+ <scale android:duration="4800"
+ android:fromXScale="0.5"
+ android:fromYScale="0.5"
+ android:toXScale="1.0"
+ android:toYScale="1.0"
+ android:pivotX="50%"
+ android:pivotY="50%"
+ android:repeatMode="reverse"
+ android:repeatCount="infinite"
+ android:interpolator="@android:anim/accelerate_decelerate_interpolator" />
+
+ <rotate android:duration="3200"
+ android:fromDegrees="0"
+ android:toDegrees="-360"
+ android:pivotX="50%"
+ android:pivotY="50%"
+ android:repeatCount="infinite"
+ android:interpolator="@android:anim/linear_interpolator" />
+</set>