在Android动画中,pivotX和pivotY的含义是什么?

时间:2014-10-23 07:42:34

标签: android android-animation

这两个术语出现在很多地方,但它们在Android动画的背景下究竟是什么意思?

1 个答案:

答案 0 :(得分:54)

pivotX和pivotY是动画的中心点 例如,如果你想做放大动画,你可以使用这个

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:fillAfter="true" >

    <scale
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="1000"
        android:fromXScale="1"
        android:fromYScale="1"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toXScale="3"
        android:toYScale="3" >
    </scale>

</set>

android:pivotX="50%"android:pivotY="50%"将意味着缩放将从中心开始。

android hive here

还有一个很好的教程