这是我在 xml 中的动画,我尝试使用 android:pivotX="50%" 但我仍然没有得到我想要的。旋转点是错误的。我希望绿线围绕屏幕中间旋转。
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0" android:interpolator="@android:anim/linear_interpolator"
android:toDegrees="360" android:pivotX="0%" android:pivotY="0%"
android:repeatCount="5"
android:duration="5000" android:startOffset="0" />
我想做这样 的动画:绿线应该旋转,旋转点应该是屏幕的中心。我怎样才能做到这一点 ?