Questions tagged [progress-indicator]

Questions about working with progress indicators in any language, for example making or styling one.

A progress indicator is used for user feedback, to let the user know that something is in progress. A progress bar is an example of this. For example JavaFX includes a spinning ProgressIndicator, but other versions like textual indicators are also included.

Questions about the macOS NSProgressIndicator class should use .

85 questions
593
votes
42 answers

How to change progress bar's progress color in Android

I'm using an horizontal progress bar in my Android application, and I want to change its progress color (which is Yellow by default). How can I do it using code (not XML)?
312
votes
18 answers

Cooler ASCII Spinners?

In a console app, an ascii spinner can be used, like the GUI wait cursor, to indicate that work is being done. A common spinner cycles through these 4 characters: '|', '/', '-', '\' What are some other cyclical animation sequences to spice up a…
203
votes
16 answers

How to Create a circular progressbar in Android which rotates on it?

I am trying to create a rounded progressbar. This is what I want to achieve There is a grey color background ring. On top of it, a blue color progressbar appears which moves in a circular path from 0 to 360 in 60 or whatever amount of…
141
votes
15 answers

How to work with progress indicator in flutter?

I'm newbie in flutter and wanted to know what is better way to add CircularProgressIndicator in my layout. For example, my login view. This view have username, password and login Button. I did want create a overlay layout (with Opacity) that, when…
Ricardo Bocchi
  • 1,551
  • 2
  • 12
  • 12
46
votes
4 answers

Android Circular Determinate ProgressBar

I want to create a Circluar Determinate ProgressBar, the kind which shows the Progress in the center of the Bar. Is there any default way to create this, or will i have to create my own custom one.
11
votes
2 answers

Achieving content placeholders as progress indicators in Android

My question is quite similar to this question. I want to achieve progress indicators that use this style: That is replacing content like text and images with grey rectangles that animate like here. I have seen this quite a lot in the past, e.g.…
creativecreatorormaybenot
  • 114,516
  • 58
  • 291
  • 402
11
votes
3 answers

Change mouse cursor to busy mode when PrimeFaces ajax request is in progress

it is possible to change the mouse cursor's form into busy mode (for example: hourglass) when processing ajax button in JSF (specifically primefaces)? I want to change my cursor's form while my p:dataTable is loading data when i navigate it to the…
David
  • 698
  • 1
  • 7
  • 12
9
votes
5 answers

Android custom circular ProgressBar direction

I have a custom Circular Progressbar. This is the drawable I have for it to be determinate:
8
votes
5 answers

Is it better to show ProgressBar UserForms in VBA as modal or modeless?

Is it better to show ProgressBar UserForms in VBA as modal or modeless? What are the best practices for developing progress indicators in VBA? Modeless UserForms require the use of Application.Interactive = False, whereas Modal UserForms by their…
Kuyenda
  • 4,529
  • 11
  • 46
  • 64
8
votes
1 answer

Change SystemTray Progress Indicator Color

i need change color of SystemTray.ProgressIndicator color, how i can do it? I tried setting ForegroundColor for SystemTray, it works for only text not Inicator. Indicator always uses PhoneAccent color.
Roman Golenok
  • 1,427
  • 9
  • 26
7
votes
3 answers

Mirror (flip) a View / ProgressBar

I have a custom built circular progress bar used for a seconds counter on a clock, which I'd like to flip, so that the clock is counting counter-clockwise. Searching here for a solution, I found this: Right to Left ProgressBar? Which obviously works…
5
votes
2 answers

Android iconGravity not working for MaterialButton with CircularProgressIndicator

I've created a custom view that extends MaterialButton that replaces the drawable with a CircularProgressIndicator when it's loading. However when I replace the drawable with the CircularProgressIndicator the iconGravity doesn't work anymore. I…
5
votes
3 answers

How to have a ProgressBar circular and in determinate mode?

I have to download some images and videos on the device and I like to track the progress by having a circular ProgressBar in determinate mode in overlay to them. The problem is that, no matter what, the ProgressBar is still indeterminate. Is there a…
4
votes
2 answers

Need a progress indicator for a Perl system() command using T:R:G mod

I want a progress indicator that takes the output of a Perl system('make') and for each line output to STDOUT from the make command, I want to output a dot as a progress indicator. Unfortunately, I'm using the Term::ReadLine::Gnu Perl mod. How…
bitbucket
  • 1,171
  • 1
  • 9
  • 20
4
votes
3 answers

How to display indeterminate NSProgressIndicator in the NSOutlineView?

I need to display a progress of loading of item's children. Please advise how to implement a progress indicator like it's done in Mail application: (source: quicksnapper.com) P. S. Here a source code of using indicator sub-views:…
Vadim
  • 9,383
  • 7
  • 36
  • 58
1
2 3 4 5 6