Re: [android-developers] Progress Dialog box

2011-09-29 Thread nageswara rao rajana
This is my soap code SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11); envelope.dotNet=true; envelope.setOutputSoapObject(request); HttpTransportSE androidHttpTransport=new HttpTransportSE(" http://123.176.47.162:88/GMANBTWEBSRV/Service.asmx";); try

Re: [android-developers] Progress Dialog box

2011-09-29 Thread Ratheesh Valamchuzhy
please paste your code . -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@g

[android-developers] Progress Dialog box

2011-09-29 Thread nageswara rao rajana
Hi, I developed an application using soap which sends data to web service.My request is this should be done in Progress spinner dialog box.I searched and tested some code but, its force closing my application. So, please any one provide me good sample code. Thanking you, nageswararao. --

Re: [android-developers] Progress Dialog

2010-11-01 Thread TreKing
On Sat, Oct 30, 2010 at 12:44 AM, piyush wrote: > -->I am new to Android And i want to Show Two Progress Dialog one after > another?? > That's not a question?? > -->First i want to show when my image is load from internet, when this > process is done i have set A button on that Remote image.

[android-developers] Progress Dialog

2010-11-01 Thread piyush
-->I am new to Android And i want to Show Two Progress Dialog one after another?? -->First i want to show when my image is load from internet, when this process is done i have set A button on that Remote image. -->When i click that button i want Dialog for second time..(on clicking button i have

Re: [android-developers] Progress Dialog on application load

2010-10-11 Thread TreKing
On Mon, Oct 11, 2010 at 2:02 AM, Rocky wrote: > I want PDialog box will come before the change_password screen appears Technically it does, but you launch your new activity immediately afterward, so you don't see anything. I recommend you use an AsyncTask to manage your sequence. You would show

Re: [android-developers] Progress Dialog on application load

2010-10-11 Thread Rocky
this is my code onCreate() { myProgressDialog = ProgressDialog.show(iAnywhere.this,"Please wait..","Checking setting", true); new Thread() { public void run() { try{ // Do some Fake-Work

Re: [android-developers] Progress Dialog on application load

2010-10-10 Thread TreKing
On Mon, Oct 11, 2010 at 1:38 AM, RKJ (Android developer) < rkjhaw1...@gmail.com> wrote: > I want a progress dialog before launching the apps, once click on > application, first ProgressDialog will come for 5 sec then actual > application. > OK. So what's the problem?

[android-developers] Progress Dialog on application load

2010-10-10 Thread RKJ (Android developer)
Hey, I want a progress dialog before launching the apps, once click on application, first ProgressDialog will come for 5 sec then actual application. --RKJ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] Progress Dialog issue

2010-07-07 Thread joka
Hi, I have a question concerning Progress Dialog. Is it possible to place on the right corner under the orange progress bar the numbers "current value/max value", these are running numbers as the bar progresses.. Here you can see how it looks now http://picasaweb.google.com/georgi.chepilev/Progres

Re: [android-developers] Progress Dialog is not showing

2010-04-27 Thread TreKing
On Sun, Apr 25, 2010 at 3:02 AM, Bipin Sutariya wrote: > Can anyone help me in this? You're blocking the main thread with your getFriends() call which prevents the dialog from showing. You will have to put that in a separate thread, or use an AsyncTask. -

[android-developers] Progress Dialog is not showing

2010-04-26 Thread Bipin Sutariya
Dear All, I am developing one application for facebook. In this application when user click on login button i start WebView acitvity there user can login. On success of login i start activity from where user pressed that login button. Now My problem is On main activity I get all friends list from

[android-developers] Progress Dialog & Status Bar

2010-04-13 Thread Sasikumar.S
Hi , - In my application i'm loading 40 images in background from web. - At the time i need to progress dialog or progress bar in status bar (not title bar ). - How to show it ? - I tried so much sample programs. - All are showing only images not progress. - Any one have any

[android-developers] Progress dialog question/problem (API Demos example)

2010-04-03 Thread EvgenyV
Hi all! I'm using the progress dialog example from Android API Demos AlertDialogSamples.java (case DIALOG_PROGRESS). After the orientation changed the dialog is freezing with no progress anymore. What should I change to make the example working properly after orientation change? The piece of code

Re: [android-developers] Progress Dialog

2010-03-05 Thread Christoph Renner
Hi LeGeNDuS I assume this's because your UI thread is busy executing your operations and therefore cannot show the progress dialog. Try to execute your operations in an other thread (e.g. by using AsyncTask). Cheers, Chrigi On Fri, Mar 5, 2010 at 12:07 PM, LeGeNDuS wrote: > Hello! > > I'm App I

[android-developers] Progress Dialog

2010-03-05 Thread LeGeNDuS
Hello! I'm App I'm doing I try to do some operations that are not very fast, and I want to add a progress dialog... I have the next code: ProgressDialog progressDialog = ProgressDialog.show(History.this, "",

[android-developers] Progress Dialog: how to pass context or adapter to the thread

2009-11-20 Thread Achanta
I am trying to display a progress bar while download data and store it in my database. My problem is that I need to pass the database adapter or the context to the thread. This is what I have tried. public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] Progress Dialog When Application Starts

2009-06-22 Thread Georgy
Hello, I am trying to initiate a progress bar when my application starts. The way my application works is that it collects info from the db that takes around 5 to 6 secs where the screen is completely black. I am trying to initiate a progress dialog that gets triggered WITHOUT a button click or

[android-developers] progress dialog did not hide. can anybody help out of there?

2009-05-03 Thread Jerry
I have developed a application with two activities, activity1 and activity2 ,and one local service, service1 . activity1 is the main activity. activity2 has a button. when button is pressed. show a progress dialog. and local service start doing some stuff. when it's done. send msg to activity2 t

[android-developers] progress dialog

2008-11-11 Thread chouman82
I am having a little problem of using progress dialog. Trying to figure out how and the optimal way of using the progress dialog. My application needs to grab information from different servers, so I am trying to show the progress dialog at the appropriate moment. I am trying to use a gallery to

[android-developers] progress dialog

2008-11-11 Thread chouman82
I am having a little problem of using progress dialog. Trying to figure out how and the optimal way of using the progress dialog. My application needs to grab information from different servers, so I am trying to show the progress dialog at the appropriate moment. I am trying to use a gallery to

[android-developers] progress dialog from a dialog

2008-04-13 Thread WildLuka
Dear All, I'd like to replicate the GTalkSettings login dialog and the progress dialog gui coupled with the login functionality for an im app i'm developing. I have pretty much managed to work everything out, however, the progress dialog, during login, is not rotating. mindyou the login code i