I have a RotateAnimation running on an imageview object.
This animation makes the object rotate at the rate of (myAnimation.setDuration(x)) per rotation.
I have quite a few of the objects and animations rotating at different rates, all objects set to repeatCount(INFINITY).
I want to be make all of them do their thing for a fixed duration (ie: 3 rotating objects, object 1 does 5 turns, object 2 does 20.33 turns, and object 3 does 0.4 turns).
/e It is also important that the position of each object at the end of the countdown is saved somewhere/returned, as I will start another rotate animation from those coordinates.
Also note, all these rotations are done about each object's own center, so by coordinates I mean degrees!
Anyone have any ideas?
Thanks!