I've been able to use the standard "ProgressDialog" for android to show that an indeterminate task is running. alt text

But I'd like to use the "smaller" progress dialog "spinner" that's used for indeterminate tasks in some of the standard Android applications like the android Market (there's a small spinning circle that's actually integrated into the application window (as opposed to floating on top of it).alt text

Does anyone know how to create the smaller progress dialog (or can someone point me in the right direction)?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 7 down vote accepted

The Activity class has a built in ProgressBar in the Title area that can be used for this purpose. Is that what you are referring to?

I assume anywhere else you are seeing this other than in a title bar would just be a ProgressBar UI widget set to indeterminate that is placed in the view.

link|improve this answer
Thank you. I was looking for both of these actually (title area and not in the title area). – user141146 Feb 4 '10 at 19:48
By title bar, are you referring to what I call the "status bar" -- the top of the phone or the titlebar of the application just below the status bar? I want to spin the one in the status bar. But then that would be a different question :) – mobibob Feb 7 '11 at 5:20
Application titlebar, not the overall status bar. – mbaird Feb 7 '11 at 15:40
feedback

Use the built in Adnroid widget called ProgressBar. put it on xml layout. and set visibility to visible and invisible as per your requirement

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.