Interface AnimationCallback


public interface AnimationCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(boolean earlyFinish)
    A Callback called when the move completes.
  • Method Details

    • execute

      void execute(boolean earlyFinish)
      A Callback called when the move completes.
      Parameters:
      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.