Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - What is a secondary progress in ProgressBar?

Tags:

Anyone know about the detail? Any website or suggestion?

like image 437
Shaiful Avatar asked Feb 23 '11 06:02

Shaiful


People also ask

What are the different types of progress bars?

There are 2 types of progress bars: determinate and indeterminate. The former is used when the amount of information that needs to be loaded is detectable. The latter is used when the system is unsure how much needs to be loaded or how long it will take.

What is the purpose of progress bar?

A progress bar is a graphical control element used to visualize the progression of an extended computer operation, such as a download, file transfer, or installation. Sometimes, the graphic is accompanied by a textual representation of the progress in a percent format.

What is a difference between SeekBar and ProgressBar in android?

A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch the thumb and drag left or right to set the current progress level or use the arrow keys. Placing focusable widgets to the left or right of a SeekBar is discouraged.

What is meant by ProgressBar describe with example?

We can display the android progress bar dialog box to display the status of work being done e.g. downloading file, analyzing status of work etc. In this example, we are displaying the progress dialog for dummy file download operation. Here we are using android. app. ProgressDialog class to show the progress bar.


1 Answers

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):

Secondary Progress Bar

In the image above, the secondary bar is the green area, when it reaches the top, some subtask is complete.

like image 157
BeeOnRope Avatar answered Sep 30 '22 17:09

BeeOnRope