Anyone know about the detail? Any website or suggestion?
Asked
Active
Viewed 1.9k times
25
-
See the related question http://stackoverflow.com/questions/10385007/how-to-show-the-secondaryprogress-in-a-android-progressdialog for some example code and a screenshot. – cgogolin Mar 17 '14 at 13:53
2 Answers
26
From the source:
There is also a secondary progress displayable on a progress bar which is useful for displaying intermediate progress, such as the buffer level during a streaming playback progress bar.
One can find a fully worked example of displaying such a bar, including screenshots of the appearance of such a bar in a particular style (circular bar which fills from the bottom):
In the image above, the secondary bar is the green area, when it reaches the top, some subtask is complete.

BeeOnRope
- 60,350
- 16
- 207
- 386
-
1
-
1These 2 links demonstrate this: https://android--examples.blogspot.co.il/2015/12/android-how-to-show-secondary.html, and: https://dzone.com/articles/android-example-progress-bar – Alaa M. Jan 20 '17 at 15:49
-
Thanks @AlaaM. - I added one of the links to the answer with a screenshot. – BeeOnRope Jan 20 '17 at 17:22
-
A common example if your daily life is video streaming. The primary progress is the current playing time of the video, while the secondary progress is the downloaded part of the video. – Sira Lam Jun 05 '19 at 07:40
2
Secondary progress vs Progress can be thought of like the downloaded part of a video you're watching vs the complete length of the progress bar

Aayush Mathur
- 89
- 3