An Android dialog that displays a progress wheel or progress bar. Because it's an extension of the AlertDialog, it also supports buttons.
Questions tagged [progressdialog]
1834 questions
22
votes
5 answers
ProgressDialog - how to remove the numbers
I was following the progress dialog example in the ApiDemos.
all went great except for one thing - I want to remove the numbers that appear underneath the bar (those running numbers that run from 0 to .getMax().
couldn't find how to do…

oriharel
- 10,418
- 14
- 48
- 57
21
votes
2 answers
Updating progress dialog in Activity from AsyncTask
In my app I am doing some intense work in AsyncTask as suggested by Android tutorials and showing a ProgressDialog in my main my activity:
dialog = ProgressDialog.show(MyActivity.this, "title", "text");
new MyTask().execute(request);
where then…

Laimoncijus
- 8,615
- 10
- 58
- 81
21
votes
2 answers
How to use AsyncTask to show a ProgressDialog while doing background work in Android?
Possible Duplicate:
Updating progress dialog in Activity from AsyncTask
I am developing my first Android App and I need a ProgressDialog to be showed while a background task, in this case just a http call on the server, happens.
I did a bit of…

groo
- 4,213
- 6
- 45
- 69
20
votes
2 answers
AsyncTask with a ProgressDialog and Progress Bar
I am attempting to use AsyncTask to load a file of determinate length. My AsyncTask looks something like this:
protected void onPreExecute() {
dialog = ProgressDialog.show(MyActivity.this, null, "Loading", false);
}
protected void…

magneticMonster
- 2,373
- 6
- 30
- 46
20
votes
3 answers
Show a progress bar when an Activity is loading
I have a ListActivity which launches another Activity based on the list selection. This second Activity needs to load a fair bit of data from the internet and as such there is a noticeable delay between when the user clicks on an item and when the…

Adam
- 417
- 2
- 6
- 18
19
votes
8 answers
Using custom ProgressDialog android
I am using custom ProgressDialog in my application, I am able to make it custom but I also want to remove the upper border or window of progressDialog.
In styles.xml I define customDialog as