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
1 answer

How to add messages and tasks to a splash screen progress in an Eclipse RCP application

I have an Eclipse RCP application which does some time consuming things in the start method of the activator. Now I want to show user friendly messages for these things with progress indication in the splash screen but I do not find any solution for…
Michael
  • 4,722
  • 6
  • 37
  • 58
2
votes
1 answer

Downloading multiple files one by one with downloadmanager on Android using one Notification

I would like to download multiple files with the DownloadManager on Android. I would like to see only 1 notification on the notification area with a ProgressBar which will show me the whole downloading progress state. Is it possible? For example…
2
votes
0 answers

Use a Circular Progress to Create a car Speedometer alike

I have a circular progress bar, what i want to do is to use it to measure speed, something like a car speedometer, but i don't know how to do thisSOMETHING LIKE THIS. Or if it is possible using a circular progress bar. So what i was doing was store…
2
votes
3 answers

javascript progressbar update on the fly

I'm trying to display the progress of a file being loaded through an XMLHttpRequest using bootstrap's progress bar. Unfortunately the progress bar only updates when the file has loaded (ie it stays at 0% while the file is loading, then jumps to 100%…
J VR
  • 61
  • 7
2
votes
1 answer

Add custom column to Datagrid in admin-on-rest

I've created an admin panel in React.js using admin-on-rest. I have a page showing a user list pulling data from an api. I need to add a custom column at the end of each row of that table that will display a progress bar for each user. I'm using a…
Mark
  • 151
  • 1
  • 12
2
votes
4 answers

How to check the progress of a Process

I have developed a standalone application using java, in which I am executing an external process using Runtime. But the execution of that process takes much time, and I would like to display a progress monitor of it. How can I get the progress of a…
Antrromet
  • 15,294
  • 10
  • 60
  • 75
2
votes
1 answer

CSS - Random Line on Page

I am using a library for a progress bar, this is a simple jQuery plugin that allows me to show steps in a workflow and if they are complete or not. I am also using Bootstrap. Essentially, using this plugin is causing a grey line across the page,…
Harambe
  • 997
  • 2
  • 8
  • 17
2
votes
1 answer

Multiple JSF progressBar inside same component

I´m trying to show the progress of several batch processes using a progressbar for each one of them. The problem is that only one progressbar is been sent to server side (the last one). Here is the code... I made a RequestScoped Named bean for the…
2
votes
0 answers

WXPython error handling and repeated uses

I have a wx python application that performs a series of steps for a particular input when you click on a button. The application works the first time, but then it throws an error if I try to click on the button a second time with a different input…
2
votes
1 answer

Android progressbar in image thumbnail

I have a gridview with an adapter that loads and caches images from the web. What I'm trying to do is find a way to have individual progress spinners for each image. I like the indeterminate ProgressBar, and I'm trying to find a way to use it…
Thomas Williams
  • 621
  • 5
  • 15
2
votes
3 answers

How to show ProgressBar and make it progress?(Xamarin.Android)

I call a web service which gets 4 files, and while these files are loading I want to show progress to the user (circular or horizontal it doesn't matter). I've followed the examples on internet but nothing appears on…
Profile2ForStack
  • 473
  • 2
  • 8
  • 16
2
votes
0 answers

How to show file uploading progress bar using html form and php code

I am using an HTML form to upload files and PHP code to save the form file in the directory and its working fine But I need to show the progress bar using the browser status bar(shown in image file) or something similar but now with the jquery…
Umar Majeed
  • 313
  • 3
  • 15
2
votes
1 answer

Tracking Long-Running Task Status in Luigi's Central Scheduler Web Interface

In the Luigi framework, I am trying to show a progress bar of a long-running task in the central scheduler's web interface using set_tracking_url, set_progress_bar and set_status in the run() method, like this: def run(self): …
Dave Reikher
  • 1,645
  • 1
  • 16
  • 15
2
votes
2 answers

WPF Indeterminate Rounded Edge, Indicator overlap parent

Good Evening Guys, I am new to WPF application. I have a trouble with Indeterminate progress bar design. I had researched a lot of progress bar related topic via online but I still not clear about the progress bar styling concept. I had tried on…
Skeiths Chew
  • 151
  • 1
  • 13
2
votes
1 answer

How to display many progress bars in console Linux ?

I am trying to create simple app using c in Ubuntu, which will copy folder to other place. Every file has to be copied in separate thread and in console I want to see the progress about every copied file. Usually I am using printf("document1.txt…
Vcvv
  • 71
  • 4
1 2 3
99
100