我正在为一个 android xml 动画而苦苦挣扎。我想围绕其中心点逆时针旋转图像。
这是我的动画xml:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true" >
<rotate
android:duration="1000"
android:repeatCount="infinite"
android:repeatMode="restart"
android:fromDegrees="360"
android:toDegrees="0"
android:pivotX="0.5"
android:pivotY="0.5"
android:interpolator="@android:anim/linear_interpolator"
/>
否,当前动画围绕点 x=0 旋转图像;y=0 。