【发布时间】:2014-01-03 06:33:15
【问题描述】:
我想创建一个像这样的动画: 它从左下角缩放到右上角。
到目前为止,这是我的代码:
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<scale
android:duration="500"
android:fillAfter="true"
android:fromXScale="0.0"
android:fromYScale="1.0"
android:toXScale="1.0"
android:toYScale="1.0"
>
</scale>
</set>
是否有一些关于如何制作动画的教程?我理解这个概念,但我不知道所有变量,例如 pivotX 和 pivotY。
【问题讨论】:
标签: android scale android-animation