Android.Graphics.Drawables.ScaleDrawable.ScheduleDrawable Method
A Drawable can call this to schedule the next frame of its animation.

Syntax

[Android.Runtime.Register("scheduleDrawable", "(Landroid/graphics/drawable/Drawable;Ljava/lang/Runnable;J)V", "GetScheduleDrawable_Landroid_graphics_drawable_Drawable_Ljava_lang_Runnable_JHandler")]
public virtual void ScheduleDrawable (Drawable who, Java.Lang.IRunnable what, long when)

Parameters

who
The drawable being scheduled.
what
The action to execute.
when
The time (in milliseconds) to run. The timebase is Android.OS.SystemClock.UptimeMillis

Remarks

A Drawable can call this to schedule the next frame of its animation. An implementation can generally simply call Android.OS.Handler.PostAtTime(Java.Lang.IRunnable, Java.Lang.Object, Java.Lang.Object) with the parameters (what, who, when) to perform the scheduling.

[Android Documentation]

Requirements

Namespace: Android.Graphics.Drawables
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1