1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <?xml version="1.0" encoding="utf-8"?>
| <set xmlns:android="http://schemas.android.com/apk/res/android" >
|
| <scale
| android:duration="150"
| android:fromXScale="1.0"
| android:fromYScale="1.0"
| android:pivotX="50%"
| android:pivotY="50%"
| android:toXScale="0.6"
| android:toYScale="0.6" />
|
| <alpha
| android:duration="150"
| android:fromAlpha="1.0"
| android:interpolator="@android:anim/accelerate_interpolator"
| android:toAlpha="0.0" />
|
| </set>
|
|