Questions tagged [progress-bar]

A progress bar is a component in a graphical user interface used to convey the progress of a task, such as a download or file transfer.

A progress bar is a component in a graphical user interface used to convey the progress of a task, such as a download or file transfer. The graphic is often displayed as a bar which illustrates the task percentage complete. Descriptive textual information may accompany the bar.

enter image description here

Typically, determinate progress bars use a linear function, such that the advancement of a progress bar is directly proportional to the amount of work that has been completed. However, varying disk, memory, processor, bandwidth and other factors complicate this estimate. Consequently, progress bars often exhibit non-linear behaviors, such as acceleration, deceleration, and pauses. These behaviors, coupled with humans' non-linear perception of time passing, produces a variable perception of how long progress bars take to complete. However, this also means progress bars can be designed to "feel" faster. Finally, the graphical design of progress bars has also been shown to influence humans' perception of duration

Indeterminate progress bars, on the other hand, provide a simple animation (often in the for of a spinning ring or an horglass).
These are meant to indicate that an operation is currently running, but it's not known when it will be over.

They may look similar to this:

enter image description here

7560 questions
2
votes
2 answers

wpf BackgroundWorker - Regarding updating UI

I use a browse for files dialog to allow a user to select multiple images. If a lot of images are selected, as expected it takes a bit. Below is an example of what I do with the selected images. I loop through the filepaths to images and create an…
Terco
  • 920
  • 3
  • 19
  • 34
2
votes
2 answers

Add a percentage text to a static Ionic 4 progress bar

The actual version of the Ionic progress bar comes without an option to display the percentage text. I tried to add it manually using the ::after selector but to no avail. This is my Ionic code: ion-progress-bar { height: 18px; …
Strider
  • 3,539
  • 5
  • 32
  • 60
2
votes
2 answers

Dynamically change the status of a ProgressBar based on two TextFields

I'm trying to change the status of a ProgressBar while the user is typing a text on either text fields. For example , the user starts typing on the first TextView, the ProgressBar should change it's value, if he deletes the text, it should reset to…
Phill Alexakis
  • 1,449
  • 1
  • 12
  • 31
2
votes
1 answer

Swift: Change the Label text while progress view is complete 1.0

I have a progressView with the label. when the page is loaded progress bar is started wit the value 0.0 and upto 1.0. This is my progressView code. Function @objc func updateProgress() { progressValue = progressValue + 0.01 …
Krunal Nagvadia
  • 1,083
  • 2
  • 12
  • 33
2
votes
1 answer

countdown timer as per video length

Trying to create horizontal progressbar as per video length using countdown timer. I have a videoview and horizontal progress bar and what i'm trying to do is run progress bar as per videos length using countdown timer long totalDuration =…
john
  • 140
  • 1
  • 16
2
votes
1 answer

Check progress using HttpClient / MultipartRequestEntity On SpringBoot

I am a beginner in Spring Boot, I work on a web project that deals with large files. I would like to make a progress bar on a POST request and that shows me the progressbar of the processing of my file on / ProcessingFile in POST Here is my code…
2
votes
4 answers

how to destroy a thread , pause/suspend a thread , resume/runAgain a thread?

Hey guys I am using runnable outside the oncreate in my android application where i have used thread to setprogress of ProgressBar. What i dont know is how to stop/destry the thread when stop button is pressed since thread.stop is not a method and…
abhishek
  • 1,434
  • 7
  • 39
  • 71
2
votes
1 answer

Nodejs puppeteer Output multiple parallel progress line in node js console

I created a simple program to upload files automatically on a website. I am using puppeteer for headless browsing login in and uploading. I am listening for changes to the upload bar by injecting mutation observer into the dom and log it into the…
Kim Megz
  • 89
  • 1
  • 10
2
votes
0 answers

'progress' progress bar re-prints every iteration

When I use the package 'progress' like so: library(progress) pb <- progress_bar$new(total = 100) for(i in 1:10){ pb$tick() } I get a repeated output like…
Travasaurus
  • 601
  • 1
  • 8
  • 26
2
votes
3 answers

How to easily change the color of a progressBar in Android?

I would like to dynamically update the ProgressBar Color, in order to match with the layout of the application that changes in realtime. The idea is to change the color according to the value set. I found some solution but seems heavy to have that…
barata7
  • 338
  • 1
  • 5
  • 13
2
votes
4 answers

C# Progress Bar not cooperating

I've run into a really weird situation. This should be so simple, yet I'm not sure why it's happening. I have a marquee progress bar set to visible=false as it's initial state. Then at one point during runtime I call one of my functions and right…
GeneK
  • 41
  • 1
  • 6
2
votes
3 answers

delphi oscillating progress bar

I'm trying to create a oscillating progress bar on a form, ie. I'd like the progress bar to start at 0, move to complete and then return. Just like the lights used to on Kitt from Night Rider, or the new Windows 7 progress bars. Does anybody know…
Pieter van Wyk
  • 2,316
  • 9
  • 48
  • 65
2
votes
2 answers

CountDown Timer with a progressbar?

I have created CountDown Timer with a progressbar that should show progress how much time has passed, for example, 10 to 0 (seconds) (when it reaches 2.5-sec progress bar should complete 25%, 5-sec progress bar should complete 50%, it should update…
Keval
  • 557
  • 10
  • 15
2
votes
2 answers

Show progress img over gridview

I want to show a progress Image when GridView is performing some operation. When, I click on update linkbtn of GridView. I have written some code in code-behind which takes some time Meanwhile,I want to show progress Image OVER GridView to notify…
Ulhas Tuscano
  • 5,502
  • 14
  • 58
  • 89
2
votes
2 answers

progress bar on videoview android

HI i am developing video streaming application and i need to make a progress bar on my application (not a progress dialog) i tried implementing it i put it on the xml file and set it to invisible on the onprepared method but the problem is that the…
Zak
  • 571
  • 2
  • 6
  • 13