Package ej.widget.motion
Interface MotionAnimationListener
-
public interface MotionAnimationListener
Listener forMotionAnimation
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
tick(int value, boolean finished)
Called regularly by the animator, unless the value has not changed.
-
-
-
Method Detail
-
tick
void tick(int value, boolean finished)
Called regularly by the animator, unless the value has not changed.The given value is within the start and stop values of the motion.
This method is executed in the MicroUI thread.
- Parameters:
value
- the current value of the motion.finished
- whether the motion is currently finished.
-
-