任何人都可以告诉我如何从android中的最后一个放大点开始缩小?

时间:2013-11-12 07:19:03

标签: android animation zooming

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

1 个答案:

答案 0 :(得分: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>