View.ScheduleDrawable Method

Definition

Overloads

Name Description
ScheduleDrawable(Drawable, IRunnable, Int64)

Schedules an action on a drawable to occur at a specified time.

ScheduleDrawable(Drawable, Action, Int64)

Schedules a drawable action to run at the specified time.

ScheduleDrawable(Drawable, IRunnable, Int64)

Schedules an action on a drawable to occur at a specified time.

[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(Android.Graphics.Drawables.Drawable who, Java.Lang.IRunnable what, long when);
[<Android.Runtime.Register("scheduleDrawable", "(Landroid/graphics/drawable/Drawable;Ljava/lang/Runnable;J)V", "GetScheduleDrawable_Landroid_graphics_drawable_Drawable_Ljava_lang_Runnable_JHandler")>]
abstract member ScheduleDrawable : Android.Graphics.Drawables.Drawable * Java.Lang.IRunnable * int64 -> unit
override this.ScheduleDrawable : Android.Graphics.Drawables.Drawable * Java.Lang.IRunnable * int64 -> unit

Parameters

who
Drawable

the recipient of the action

what
IRunnable

the action to run on the drawable

when
Int64

the time at which the action must occur. Uses the SystemClock#uptimeMillis timebase.

Implements

Attributes

Remarks

Schedules an action on a drawable to occur at a specified time.

Java documentation for android.view.View.scheduleDrawable(android.graphics.drawable.Drawable, java.lang.Runnable, 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

ScheduleDrawable(Drawable, Action, Int64)

Schedules a drawable action to run at the specified time.

public void ScheduleDrawable(Android.Graphics.Drawables.Drawable who, Action what, long when);
member this.ScheduleDrawable : Android.Graphics.Drawables.Drawable * Action * int64 -> unit

Parameters

who
Drawable

The Android.Graphics.Drawables.Drawable value used for who.

what
Action

The System.Action value used for what.

when
Int64

The System.Int64 value used for when.

Remarks

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