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
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
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.
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
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
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?
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.
-
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
8 matches
Mail list logo