美文网首页
Android无线旋转动画XML

Android无线旋转动画XML

作者: 清朝公主大清正黄旗 | 来源:发表于2021-11-08 15:26 被阅读0次

插值器为线性匀速

<?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:pivotX="50%"
        android:pivotY="50%"
        android:duration="5000"
        android:fromDegrees="0"
        android:toDegrees="359"
        android:repeatMode="restart"
        android:repeatCount="-1"/>
</set>

相关文章

网友评论

      本文标题:Android无线旋转动画XML

      本文链接:https://www.haomeiwen.com/subject/ttguzltx.html