如何做一个匀速旋转的轮子

首先写一个animation.xml的动画文件



    
   
  
    

然后在activity中onCreate方法里面写入

ImageView wheela=(ImageView)findViewById(R.id. imageView2);
              ImageView wheelb=(ImageView)findViewById(R.id. imageView3);
              Animation animation1=AnimationUtils.loadAnimation(this,R.anim.rotate);
              LinearInterpolator lir = new LinearInterpolator();/*这两句保证匀速旋转,否则是先快后慢*/
               animation1.setInterpolator(lir);
              wheela.startAnimation( animation1);
              wheelb.startAnimation( animation1);

你可能感兴趣的:(如何做一个匀速旋转的轮子)