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.

1834 questions
0
votes
0 answers

Dialog Box not showing up

I wonder why does the run method not show any dialog, I even doubt if it adds any files to the arraylist. Maybe i'll have to use a handler to show up the dialogbox but then how do I incorporate a handler here plz guide. public class Homescreen…
0
votes
5 answers

Create a dialogbox inside a thread while checking for an internet connection

I am trying to find out if my app is connected to the internet or not. I have a timeout set to 3 seconds. Sometimes the Internet Check will come back as "Not Connected" (even if I do have an internet connection) and sometimes it doesn't. Why does it…
Howli
  • 12,291
  • 19
  • 47
  • 72
0
votes
1 answer

Show progress Bar Untill the next activity gets loaded

I am new in android development. I have two activities in first activity there is only a button by which i am calling next activity using intent and in second activity i am doing the actual work i.e. i am getting the values from web using SOAP. So…
Gauraw
  • 304
  • 2
  • 5
  • 13
0
votes
2 answers

Android Doing something AFTER Activity is visible

I have activity with a button.When button is clicked,a new activity starts and in this activity , various data fetch from web.But when I click the button , first activity holds on for a while and after 3-4 seconds second activity starts with ready…
0
votes
1 answer

How to display a ProgressDialog while executing a background task?

I want to display a process dialog for a particular time in front of an activity while other tasks performed in background . i don't want to use asynkTask as am updating the ui inside that method. please help
0
votes
1 answer

Android app: ensuring completion of unzipping task when activity lifecycle events occur

I want that my Android app unzips a compressed archive. My concern is what happens if lifecycle stages of the activity occurr during the unzipping, like i.e. onStop(), onPause(), onDestroy() methods. In my app it doesn't matter blocking the UI while…
P5music
  • 3,197
  • 2
  • 32
  • 81
0
votes
5 answers

Android Progressbar not updating

i got a problem in updating progress bar. I am updating progress bar in separate Thread and the variable on which the progressbar progress is depending(which is a class variable) updating in another thread. So, the progress dialog shows but always…
umerk44
  • 2,797
  • 4
  • 23
  • 43
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
  • 149
  • 1
  • 2
  • 11
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,924
  • 7
  • 40
  • 82
0
votes
2 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,943
  • 19
  • 53
  • 86
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
  • 173
  • 3
  • 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
  • 881
  • 1
  • 14
  • 38
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,106
  • 3
  • 26
  • 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,989
  • 2
  • 17
  • 33
1 2 3
99
100