Questions tagged [progressdialog]

An Android dialog that displays a progress wheel or progress bar. Because it's an extension of the AlertDialog, it also supports buttons.

1832 questions
0
votes
0 answers

Is there an easy way to change textsize in ProgressDialog?

I'm looking for an easy way to change the textsize in a ProgressDialog. I know that I could create a custom progressdialog, but is there any other easier solution for this?
silvia_aut
  • 1,435
  • 6
  • 19
  • 32
0
votes
1 answer

Not Show Progress Dialog

I want to put a ProgressDialog on my program while calculating something.I tried many things but any of them helps me.Here is my code ; dialog=ProgressDialog.show(this, "calculating", "Please wait while the calculation is getting…
begin_EN
  • 129
  • 1
  • 10
0
votes
4 answers

Android Dialog not showing on long running parser

I have an xml parser that parses a large file with 1056 tags of info I am grabbing locally (not url based). I would like to have a dialog show while this thing is running through the for loop, but instead i just see a white screen until all is done…
jasonflaherty
  • 1,815
  • 6
  • 34
  • 76
0
votes
3 answers

How to load progress dialog inside a webview when we navigate from a url to other in android?

I would like to know how to invoke progress dialog inside a webview when we we navigate to new url from a url.Kindly provide me an example or snippet on how to achieve this.Thank a lot.
Karthik
  • 4,715
  • 19
  • 49
  • 85
0
votes
1 answer

Wait AsyncTask with dialog

I have a problem with AsyncTask. I update a list of object by calling a webService. During this time, i want to display a ProgressDialog. Then when the list is fully updated, i want the dialog the close and the AsyncTask too. The problem is that the…
Bernie
  • 163
  • 2
  • 13
0
votes
2 answers

Android: Why my progress dialog not disappear?

I have the following code. I'm using 4 fragment on an activity. The fragment has a webView. But as you know, preparing all the data for fragment takes long time. So I wanted to use a progress dialog while the data preparing. Yeah, I called it and…
Arda Oğul Üçpınar
  • 742
  • 1
  • 11
  • 33
0
votes
3 answers

Dismiss and show Dialog when change orientation in AsyncTask in ViewPager

I have ViewPager with three pages. In one of them I show a ProgressDialog in an AsyncTask. Problem is that when change orientation, Dialog is dismissed and doesn't appear. Here is my code: AndroidManifest.xml
Lyd
  • 2,046
  • 3
  • 24
  • 33
0
votes
4 answers

Memory Leak issue while excuting a piece of Code in Android

I got the below error while running my code. I don't have idea how to stop the leaking memory and get rid off this issue. 08-30 10:00:32.538: E/WindowManager(851): Activity simplicity.in.TenderPopUpTabsActivity has leaked window…
0
votes
3 answers

Dismissing ProgessDialog on Android

I've been to get rid of a ProgressDialog for some time now. After some googling and reading through questions on stackoverflow I round that I can only run ProgressDialog.dismiss() from the UI Thread. After some more reading I learned I need to…
Ron
  • 1,749
  • 1
  • 16
  • 29
0
votes
1 answer

Android - Progress Bar not updating

I have a thread which updates a data into SQLite DB after fetching it from a txt file, I want to show a dialog box with its progress updating accordingly. The following code works correctly, even the runOnUiThread also works for dismiss, but…
mdanishs
  • 1,794
  • 6
  • 21
  • 43
0
votes
1 answer

Progress dialog spinning wheel stops while loading

I am using the code for showing progress bar with spinning wheel in asyn task as below class Startsyntask extends AsyncTask { ProgressDialog dialog = new ProgressDialog(Myclass.this); protected void…
VIGNESH
  • 1,978
  • 6
  • 27
  • 46
0
votes
2 answers

How to use publishProgress with httppost?

How to use publishProgress with httpPost? I saw example with urlOpenConnection, but did not for HttpPost. Is it possible to use publishProgress with my code stracture(I wish to see the downloading status)? My asynctask subclass class SendData…
Yarh
  • 4,116
  • 4
  • 39
  • 88
0
votes
1 answer

Progres Dialog crashes activity in async task

I had a working async task in which I placed a progress dialog. The problem is when I put the progress dialog in it crashes: public class CheckBeerJSON extends AsyncTask { Context c; String b; private…
Mike
  • 6,301
  • 23
  • 70
  • 124
0
votes
1 answer

ProgressDialog Not Dismissing in AsyncTask

I have an app that propogates a spinner from a website inside an AsyncTask. Without a ProgressDialog, I am stuck with an empty spinner until it loads. With a ProgressDialog, the network operation never finishes and the ProgressDialog stays up…
sajattack
  • 762
  • 1
  • 7
  • 23
0
votes
3 answers

implementing ProgressDialog AsyncTask

I am having a problem to implement a ProgressDialog in a class that extends AsyncTask. I got the following problem: super.onProgressUpdate(progress); message from eclipse: the method onProgessUpdate (Void...) in the type AsyncTask is not…
Björn Hallström
  • 3,503
  • 7
  • 33
  • 47
1 2 3
99
100