1

打开应用程序后,图像应自动放大,然后从该点开始缩小。

4

1 回答 1

1

使用选择器 ..u 可以解决这个问题

放大

    <set xmlns:android="http://schemas.android.com/apk/res/android"
    android:fillAfter="true" >

    <scale
    android:duration="10000"
    android:fromXScale="1"
    android:fromYScale="1"
    android:pivotX="50%"
    android:pivotY="50%"
    android:toXScale="3"
    android:toYScale="3" >
    </scale>
</set>

缩小

<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true" >
<scale
android:duration="10000"
android:fromXScale="3"
android:fromYScale="3"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="1.0"
android:toYScale="1.0" >
</scale>
</set>
于 2013-12-11T14:25:49.570 回答