View.UnscheduleDrawable Method

Definition

Overloads

UnscheduleDrawable(Drawable)

Unschedule any events associated with the given Drawable.

UnscheduleDrawable(Drawable, IRunnable)

Cancels a scheduled action on a drawable.

UnscheduleDrawable(Drawable, Action)

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

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, Action)

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

Parameters

who
Drawable
what
Action

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