ProgressBar.Indeterminate Property

Definition

Indicate whether this progress bar is in indeterminate mode. -or- Change the indeterminate mode for this progress bar.

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 progress bar is in indeterminate mode

Attributes

Remarks

Property getter documentation:

Indicate whether this progress bar is in indeterminate mode.

Java documentation for android.widget.ProgressBar.isIndeterminate().

Property setter documentation:

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

If this progress bar's style only supports indeterminate mode (such as the circular progress bars), then this will be ignored.

Java documentation for android.widget.ProgressBar.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