回転をさせる時、ポイントとしては、中心点をどこにするのか、連続して回転させるのは設定をどうすればいいのか?が重要になります。
対象の中央を中心に回転し続けるのは
RotateAnimation ra1 = new RotateAnimation(0,360,Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF,0.5f); ra1.setDuration(800); ra1.setRepeatCount( Animation.INFINITE); ra1.setRepeatMode(Animation.REVERSE); ((ImageView)rootView.findViewById(R.id.image_light1)).startAnimation(ra1);
これこれ。