小图标转动

如何让一个刷新的小图标转起来?so easy,写个属性动画xml,然后在代码中加载进来,在view中使用动画就搞定,在此记录一下。

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="2000"
    android:fillAfter="false"
    android:fillBefore="true"
    android:fillEnabled="true"
    android:fromDegrees="0"
    android:pivotX="50%"
    android:pivotY="50%"

    android:repeatCount="infinite"
    android:repeatMode="restart"
    android:startOffset="0"
    android:toDegrees="360">

</rotate>
private Animation anim;
anim = AnimationUtils.loadAnimation(getContext(), com.example.R.anim.refreash_animation);
refresh_iv.startAnimation(anim);

你可能感兴趣的:(Android小技巧,animation)