TimeAnimator.ITimeListener.OnTimeUpdate(TimeAnimator, Int64, Int64) Method

Definition

Notifies listeners of the occurrence of another frame of the animation, along with information about the elapsed time.

[Android.Runtime.Register("onTimeUpdate", "(Landroid/animation/TimeAnimator;JJ)V", "GetOnTimeUpdate_Landroid_animation_TimeAnimator_JJHandler:Android.Animation.TimeAnimator/ITimeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void OnTimeUpdate (Android.Animation.TimeAnimator? animation, long totalTime, long deltaTime);
[<Android.Runtime.Register("onTimeUpdate", "(Landroid/animation/TimeAnimator;JJ)V", "GetOnTimeUpdate_Landroid_animation_TimeAnimator_JJHandler:Android.Animation.TimeAnimator/ITimeListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member OnTimeUpdate : Android.Animation.TimeAnimator * int64 * int64 -> unit

Parameters

animation
TimeAnimator

The animator sending out the notification.

totalTime
Int64

The total time elapsed since the animator started, in milliseconds.

deltaTime
Int64

The time elapsed since the previous frame, in milliseconds.

Attributes

Remarks

Notifies listeners of the occurrence of another frame of the animation, along with information about the elapsed time.

Java documentation for android.animation.TimeAnimator.TimeListener.onTimeUpdate(android.animation.TimeAnimator, long, long).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to