android旋转动画代码
时间: 2023-11-22 20:04:18 浏览: 192
以下是一个简单的 Android 旋转动画代码示例:
1. 在 res/anim/ 目录下创建一个 rotate.xml 文件,代码如下:
```
<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"/>
```
2. 在你的 Activity 或 Fragment 中获取一个 ImageView 控件,并将 rotate.xml 文件设置为其动画:
```
ImageView imageView = findViewById(R.id.imageView);
Animation animation = AnimationUtils.loadAnimation(this, R.anim.rotate);
imageView.startAnimation(animation);
```
这会使 ImageView 控件旋转起来。你可以根据需要调整 rotate.xml 文件中的参数,例如旋转角度、中心点位置、动画时长等。
阅读全文