I\'ve created an animation for an ImageView based on a RotatedTranstion using the following code :
ImageView icon = ImageCache.getImage(\"refresh.png\"); Ro
The timing for acceleration and deceleration at each Transition cycle is controlled by the Interpolator. The default Interpolator used by Transition is Interpolator.EASE_BOTH.
Transition
Interpolator
Interpolator.EASE_BOTH
You want linear interpolation so add this to your code:
rotateTransition.setInterpolator(Interpolator.LINEAR);