如何使imageview不断旋转?

时间:2015-09-17 22:47:59

标签: android imageview spin

<ImageView
      android:id="@+id/imageView1"
      android:layout_width="300dp"
      android:layout_height="300dp"
      android:src="@drawable/zaid1"
      android:layout_centerVertical="true"
      android:layout_centerHorizontal="true" />

我在活动中间有一个imageview,我怎么能这样做,所以它无休止地旋转360度?

2 个答案:

答案 0 :(得分:21)

尝试使用RotateAnimation

RotateAnimation rotateAnimation = new RotateAnimation(0, 360f,
    Animation.RELATIVE_TO_SELF, 0.5f,
    Animation.RELATIVE_TO_SELF, 0.5f);

rotateAnimation.setInterpolator(new LinearInterpolator());
rotateAnimation.setDuration(500);
rotateAnimation.setRepeatCount(Animation.INFINITE);

findViewById(R.id.imageView1).startAnimation(rotateAnimation);

答案 1 :(得分:0)

或XML方式。 创建&#34;动画&#34; res文件夹中的文件夹。 创建一个xml文件,根据需要为其命名。您将在此处定义动画。

放入xml文件:

<?xml version="1.0" encoding="utf-8"?>
    <rotate xmlns:android="http://schemas.android.com/apk/res/android" 
        android:fromDegrees="0"
        android:toDegrees="359"
        android:pivotX="50%"
        android:pivotY="50%"
        android:duration="6000"
        android:interpolator="@android:anim/linear_interpolator"
        android:repeatCount="infinite"/>

现在你只需加载动画:

Animation rotation = AnimationUtils.loadAnimation(this, R.anim.your_xml_name);

然后启动它:

findViewById(R.id.imageView1).startAnimation(rotation);