public interface AnimationCallback
Modifier and Type | Method and Description |
---|---|
void |
execute(boolean earlyFinish)
A
Callback called when the move completes. |
void execute(boolean earlyFinish)
Callback
called when the move completes.earlyFinish
- true if the animation was cut short. To quit an animation early, simply call the
non-animated version of the same API, so for example call Canvas.hide()
to cut short an animation from
Canvas.animateHide()
already in
progress.