92

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

Android Development → ProgressDialog.isIndeterminate()

Trinimon
  • 13,380
  • 9
  • 39
  • 58
David S.
  • 9,721
  • 9
  • 53
  • 95

5 Answers5

161

It means the "loading amount" is not measured.

C.d.
  • 9,504
  • 6
  • 37
  • 50
36

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.

Jim
  • 21,521
  • 5
  • 49
  • 80
17

Basically when setProgressStyle(ProgressDialoge.STYLE_SPINNER) is taken then setIndeterminate() will be true because a circle(Spinner) will rotate, which shows that "do not know how much time it is going to take". When take ProgressStyle(ProgressDialoge.STYLE_HORIZANTAL) we will take setIndeterminate() as false since it take a value/percentage bar like how much percentage it was completed with setProgress(value).

Balder
  • 8,222
  • 3
  • 36
  • 59
Anusha
  • 223
  • 2
  • 7
2

In simple language we can say when the amount is not determined means we don't know how much it gonna be to be completed or loaded fully..!!

Gurjit
  • 514
  • 1
  • 9
  • 19
0

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

Note: A ProgressDialog with style STYLE_SPINNER is always indeterminate and will ignore this setting. Blockquote

For illustration, the progress animation keep loading from left to right and then repeat automatically without user interaction(which setProgress) when indeterminate set to true.

Reference here.

Fruit
  • 6,309
  • 3
  • 42
  • 57