gpt4 book ai didi

android - 如何以恒定速度连续旋转 View ?

转载 作者:太空狗 更新时间:2023-10-29 13:05:50 26 4
gpt4 key购买 nike

我正在尝试以恒定速度连续旋转 View 。我用过,

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

android:fromDegrees="0"
android:toDegrees="1800"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:duration="1000"
/>

</set>

但在旋转一圈后它会暂停一会儿,然后开始另一圈旋转。有没有办法消除停顿?

最佳答案

继续使用android:repeatMode="restart"

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

<rotate
android:duration="1700"
android:interpolator="@android:anim/linear_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:repeatMode="restart"
android:toDegrees="360" />

</set>

关于android - 如何以恒定速度连续旋转 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48221367/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com