summaryrefslogtreecommitdiff
path: root/core/src/main/res/drawable/launcher_animate.xml
blob: 189a01d26a353affa3017cadb8ce711f3724b131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<animation-list
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:aapt="http://schemas.android.com/aapt"
    android:oneshot="false">

    <item android:duration="1000">
        <aapt:attr name="android:drawable">
            <layer-list>
                <item android:drawable="@drawable/launcher_animate_bg" />
                <item android:drawable="@drawable/launcher_animate_wave1" />
                <item android:drawable="@drawable/launcher_animate_wave2" />
            </layer-list>
        </aapt:attr>
    </item>

    <item android:duration="80">
        <aapt:attr name="android:drawable">
            <layer-list>
                <item android:drawable="@drawable/launcher_animate_bg" />
                <item android:drawable="@drawable/launcher_animate_wave1" />
            </layer-list>
        </aapt:attr>
    </item>

    <item android:duration="200">
        <aapt:attr name="android:drawable">
            <layer-list>
                <item android:drawable="@drawable/launcher_animate_bg" />
            </layer-list>
        </aapt:attr>
    </item>

    <item android:duration="80">
        <aapt:attr name="android:drawable">
            <layer-list>
                <item android:drawable="@drawable/launcher_animate_bg" />
                <item android:drawable="@drawable/launcher_animate_wave1" />
            </layer-list>
        </aapt:attr>
    </item>

</animation-list>