在Android中,可以使用RotateAnimation類來實現旋轉動畫。以下是一個簡單的示例代碼演示如何應用RotateAnimation:
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:duration="1000"
android:repeatCount="infinite" />
Animation animation = AnimationUtils.loadAnimation(this, R.anim.rotate);
view.startAnimation(animation);
其中,this是當前Activity的實例,view是要應用旋轉動畫的View。
這樣就可以在View上應用旋轉動畫了。rotate.xml文件中定義了一個從0度到360度無限循環的旋轉動畫,可以根據需求修改旋轉的角度、中心點、持續時間等屬性。