0

这是我在 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" />

我想做这样 在此处输入图像描述 的动画:绿线应该旋转,旋转点应该是屏幕的中心。我怎样才能做到这一点 ?

4

1 回答 1

-2

使用 RotateAnimation,将轴心点设置为图像的中心。

RotateAnimation anim = new RotateAnimation(0f, 350f, 15f, 15f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(700);

// Start animating the image
final ImageView splash = (ImageView) findViewById(R.id.splash);
splash.startAnimation(anim);

// Later.. stop the animation
splash.setAnimation(null);
于 2015-03-27T18:08:02.897 回答