Nithin wrote:
> Hi,
>
> I am rotating a view using rotateAnimation with this code
> new RotateAnimation(0, 360, w / 2, h / 2);
> I want to rotate this view infinitely, so i put
> setRepeatCount(RotateAnimation.INFINITE);
>
> But the problem is after every one complete rotation, its stopping and
> starting again, means by default rotateAnimation have
> AccelerateDecelerateInterpolator(). I feel because of this. So if i
> put setInterpolator(null), its throwing null pointer exception. How to
> solve this.
>
> I want to rotate my view without any lag.
>
> Nithin

insted of passing null use linear interpolator

pskink

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.

Reply via email to