ProgressDialog.Indeterminate Property

Definition

Whether this ProgressDialog is in indeterminate mode. -or- Change the indeterminate mode for this ProgressDialog.

public virtual bool Indeterminate { [Android.Runtime.Register("isIndeterminate", "()Z", "GetIsIndeterminateHandler")] get; [Android.Runtime.Register("setIndeterminate", "(Z)V", "GetSetIndeterminate_ZHandler")] set; }
[<get: Android.Runtime.Register("isIndeterminate", "()Z", "GetIsIndeterminateHandler")>]
[<set: Android.Runtime.Register("setIndeterminate", "(Z)V", "GetSetIndeterminate_ZHandler")>]
member this.Indeterminate : bool with get, set

Property Value

true if the dialog is in indeterminate mode, false otherwise

Attributes

Remarks

Property getter documentation:

Whether this ProgressDialog is in indeterminate mode.

Java documentation for android.app.ProgressDialog.isIndeterminate().

Property setter documentation:

Change the indeterminate mode for this ProgressDialog. In indeterminate mode, the progress is ignored and the dialog shows an infinite animation instead.

<strong>Note:</strong> A ProgressDialog with style #STYLE_SPINNER is always indeterminate and will ignore this setting.

Java documentation for android.app.ProgressDialog.setIndeterminate(boolean).

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