public interface Animation
Modifier and Type | Method and Description |
---|---|
boolean |
tick(long platformTimeMillis)
Called regularly by an animator.
|
boolean tick(long platformTimeMillis)
The given time is based on Util.platformTimeMillis()
which is monotonic.
This method is executed in the MicroUI thread.
platformTimeMillis
- the time in milliseconds.true
if the animation continue, false
if the animation must stop.