TimeAnimator
class TimeAnimator : ValueAnimator
| kotlin.Any | |||
| ↳ | androidx.core.animation.Animator | ||
| ↳ | androidx.core.animation.ValueAnimator | ||
| ↳ | androidx.core.animation.TimeAnimator |
This class provides a simple callback mechanism to listeners that is synchronized with all other animators in the system. There is no duration, interpolation, or object value-setting with this Animator. Instead, it is simply started, after which it proceeds to send out events on every animation frame to its TimeListener (if set), with information about this animator, the total elapsed time, and the elapsed time since the previous animation frame.
Summary
Nested types |
|---|
interface TimeAnimator.TimeListenerImplementors of this interface can set themselves as update listeners to a |
Public constructors |
|---|
Public functions |
|
|---|---|
Unit |
setCurrentPlayTime(playTime: Long)Sets the position of the animation to the specified point in time. |
Unit |
setTimeListener(listener: TimeAnimator.TimeListener?)Sets a listener that is sent update events throughout the life of an animation. |
Unit |
start()Starts this animation. |
Inherited Constants |
||||||
|---|---|---|---|---|---|---|
|
||||||
|
Inherited functions |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Public constructors
Public functions
setCurrentPlayTime
fun setCurrentPlayTime(playTime: Long): Unit
Sets the position of the animation to the specified point in time. This time should be between 0 and the total duration of the animation, including any repetition. If the animation has not yet been started, then it will not advance forward after it is set to this time; it will simply set the time to this value and perform any appropriate actions based on that time. If the animation is already running, then setCurrentPlayTime() will set the current playing time to this value and continue playing from that point.
| Parameters | |
|---|---|
playTime: Long |
The time, in milliseconds, to which the animation is advanced or rewound. |
setTimeListener
fun setTimeListener(listener: TimeAnimator.TimeListener?): Unit
Sets a listener that is sent update events throughout the life of an animation.
| Parameters | |
|---|---|
listener: TimeAnimator.TimeListener? |
the listener to be set. |
start
fun start(): Unit
Starts this animation. If the animation has a nonzero startDelay, the animation will start running after that delay elapses. A non-delayed animation will have its initial value(s) set immediately, followed by calls to onAnimationStart for any listeners of this animator.
The animation started by calling this method will be run on the thread that called this method. This thread should have a Looper on it (a runtime exception will be thrown if this is not the case). Also, if the animation will animate properties of objects in the view hierarchy, then the calling thread should be the UI thread for that view hierarchy.