summaryrefslogtreecommitdiffstats
path: root/examples/qmlandroid/catalog/android/res/anim/awesome.xml
blob: ee6d387c4bf45a5c2f68b4de0b7c6d1118d7b60b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>