AsyncTask.OnProgressUpdate(Object[]) Method

Definition

Runs on the UI thread after #publishProgress is invoked.

[Android.Runtime.Register("onProgressUpdate", "([Ljava/lang/Object;)V", "GetOnProgressUpdate_arrayLjava_lang_Object_Handler")]
protected virtual void OnProgressUpdate (params Java.Lang.Object[]? values);
[<Android.Runtime.Register("onProgressUpdate", "([Ljava/lang/Object;)V", "GetOnProgressUpdate_arrayLjava_lang_Object_Handler")>]
abstract member OnProgressUpdate : Java.Lang.Object[] -> unit
override this.OnProgressUpdate : Java.Lang.Object[] -> unit

Parameters

values
Object[]

The values indicating progress.

Attributes

Remarks

Runs on the UI thread after #publishProgress is invoked. The specified values are the values passed to #publishProgress. The default version does nothing.

Java documentation for android.os.AsyncTask.onProgressUpdate(Progress...).

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