View.UnscheduleDrawable Method

Definition

Overloads

Name Description
UnscheduleDrawable(Drawable, Action)

Cancels a previously scheduled drawable action.

UnscheduleDrawable(Drawable, IRunnable)

Cancels a scheduled action on a drawable.

UnscheduleDrawable(Drawable)

Unschedule any events associated with the given Drawable.

UnscheduleDrawable(Drawable, Action)

Cancels a previously scheduled drawable action.

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

Parameters

who
Drawable

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

what
Action

The System.Action value used for what.

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

UnscheduleDrawable(Drawable, IRunnable)

Cancels a scheduled action on a drawable.

[Android.Runtime.Register("unscheduleDrawable", "(Landroid/graphics/drawable/Drawable;Ljava/lang/Runnable;)V", "GetUnscheduleDrawable_Landroid_graphics_drawable_Drawable_Ljava_lang_Runnable_Handler")]
public virtual void UnscheduleDrawable(Android.Graphics.Drawables.Drawable who, Java.Lang.IRunnable what);
[<Android.Runtime.Register("unscheduleDrawable", "(Landroid/graphics/drawable/Drawable;Ljava/lang/Runnable;)V", "GetUnscheduleDrawable_Landroid_graphics_drawable_Drawable_Ljava_lang_Runnable_Handler")>]
abstract member UnscheduleDrawable : Android.Graphics.Drawables.Drawable * Java.Lang.IRunnable -> unit
override this.UnscheduleDrawable : Android.Graphics.Drawables.Drawable * Java.Lang.IRunnable -> unit

Parameters

who
Drawable

the recipient of the action

what
IRunnable

the action to cancel

Implements

Attributes

Remarks

Cancels a scheduled action on a drawable.

Java documentation for android.view.View.unscheduleDrawable(android.graphics.drawable.Drawable, java.lang.Runnable).

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

UnscheduleDrawable(Drawable)

Unschedule any events associated with the given Drawable.

[Android.Runtime.Register("unscheduleDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetUnscheduleDrawable_Landroid_graphics_drawable_Drawable_Handler")]
public virtual void UnscheduleDrawable(Android.Graphics.Drawables.Drawable? who);
[<Android.Runtime.Register("unscheduleDrawable", "(Landroid/graphics/drawable/Drawable;)V", "GetUnscheduleDrawable_Landroid_graphics_drawable_Drawable_Handler")>]
abstract member UnscheduleDrawable : Android.Graphics.Drawables.Drawable -> unit
override this.UnscheduleDrawable : Android.Graphics.Drawables.Drawable -> unit

Parameters

who
Drawable

The Drawable to unschedule.

Attributes

Remarks

Unschedule any events associated with the given Drawable. This can be used when selecting a new Drawable into a view, so that the previous one is completely unscheduled.

Java documentation for android.view.View.unscheduleDrawable(android.graphics.drawable.Drawable).

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.

See also

Applies to