1

我想制作一个保持循环的加载图像。

我试过这个:

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

    <rotate 
    android:fromDegrees="0"
    android:toDegrees="360"
    android:duration="1000"
    android:pivotX="50%"
    android:repeatCount="infinite"
    android:pivotY="50%">
</rotate>
</set>

它工作得很好,但我的问题是每当图像从 0 到 360 时,它会停止 0.001 秒然后再次旋转。请问有什么帮助吗?

4

1 回答 1

2

这是因为0并且360在同一个位置试试这个:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" 
    android:interpolator="@android:anim/linear_interpolator">

<rotate 
    android:fromDegrees="0"
    android:toDegrees="359"
    android:duration="1000"
    android:pivotX="50%"
    android:repeatCount="infinite"
    android:pivotY="50%">
</rotate>
</set>
于 2013-07-11T08:39:33.400 回答