I\'ve created an animation for an ImageView based on a RotatedTranstion using the following code :
ImageView icon = ImageCache.getImage(\"refresh.png\");
Ro
The apparent pause between each cycle is caused by the interpolator, which by default uses Interpolator.EASE_BOTH
(so it decelerates at the end of each cycle and accelerates at the beginning).
To remove this, just set the interpolator to Interpolator.LINEAR
:
rotateTransition.setInterpolator(Interpolator.LINEAR);