Android - ImageView图形不断旋转的动画(例如音频播放的旋转)

1.  res下建立一个动画文件夹anim
2.  anim文件夹下面建立名称为:rotaterepeat动画xml文件

  
   
        
     


3. Activity文件下

 

ImageView animationimg= (ImageView) findViewById(R.id.animationimg)
Animation mAnimation = AnimationUtils.loadAnimation(this, R.anim.rotaterepeat);
animationimg.startAnimation(mAnimation);

 

你可能感兴趣的:(开发代码)