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

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.

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?

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. -

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