Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the 'indeterminate' mean in ProgressDialog?

Maybe my English is poor but I really cannot figure out what the "indeterminate" means in this context:

Android Development → ProgressDialog.isIndeterminate()

like image 627
David S. Avatar asked Mar 02 '12 10:03

David S.


People also ask

What is indeterminate in progress bar?

Android ProgressBar Indeterminate ProgressBar An indeterminate ProgressBar shows a cyclic animation without an indication of progress.

What is Android indeterminate?

Indeterminate Progress Use indeterminate mode for the progress bar when you do not know how long an operation will take. Indeterminate mode is the default for progress bar and shows a cyclic animation without a specific amount of progress indicated.

What is ProgressDialog in Android?

ProgressDialog is a modal dialog, which prevents the user from interacting with the app. Instead of using this class, you should use a progress indicator like ProgressBar , which can be embedded in your app's UI. Alternatively, you can use a notification to inform the user of the task's progress.


2 Answers

It means the "loading amount" is not measured.

like image 77
C.d. Avatar answered Nov 15 '22 12:11

C.d.


From wiktionary: Indeterminate: Not accurately determined or determinable. It basically just means you're unsure how long the action will take so you cannot say for example something is 50% done.

This normally just means the progress will be displayed as a constantly moving loading bar rather than a percentage or the like.

like image 35
Jim Avatar answered Nov 15 '22 13:11

Jim