这两个术语出现在很多地方,但它们在Android动画的背景下究竟是什么意思?
答案 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
还有一个很好的教程