xref: /aosp_15_r20/development/samples/devbytes/animation/PropertyAnimations/res/animator/combo.xml (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1<?xml version="1.0" encoding="utf-8"?>
2<set xmlns:android="http://schemas.android.com/apk/res/android"
3    android:ordering="sequentially">
4    <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
5        android:propertyName="alpha"
6        android:repeatCount="1"
7        android:repeatMode="reverse"
8        android:duration="300"
9        android:valueTo="0"/>
10    <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
11        android:propertyName="translationX"
12        android:repeatCount="1"
13        android:repeatMode="reverse"
14        android:duration="300"
15        android:valueTo="800"/>
16
17    <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
18        android:propertyName="rotation"
19        android:duration="300"
20        android:valueFrom="0"
21        android:valueTo="360"/>
22
23    <set xmlns:android="http://schemas.android.com/apk/res/android">
24        <objectAnimator
25            android:propertyName="scaleX"
26            android:repeatCount="1"
27            android:repeatMode="reverse"
28            android:duration="300"
29            android:valueTo="2"/>
30        <objectAnimator
31            android:propertyName="scaleY"
32            android:repeatCount="1"
33            android:repeatMode="reverse"
34            android:duration="300"
35            android:valueTo="2"/>
36    </set>
37</set>
38