The problem I have is concerning two separate Asynctask classes. The first asynctask uses a network operation in doInBackground method
HttpResponse httpResponse = httpClient.execute(httpPost);
while the other is a thread for loading images with a progressDialog.
so what happens is if I am using a slow internet connection (so that means the first asynctask hasn't finished yet) and then go directly to the second asynctask, the second class will wait until the first one is finished.
btw, right after I call the first asynctask I directly finish the activity and call another one does this have to do with anything?
tl;dr version:
second asynctask won't do the doinbackground process until the first asynctask is done
I know this because the progress dialog is shown for a long time (which I show it in preExecute and dismiss it in postexecute)
EDIT:
the first asynctask involves waiting for a response from the net. so while there isn't a response the second asynctask won't do its doinbackground process.
EDIT 2:
Is there a way for me to properly use these 2 asynctask so the second one won't have to wait for the first to finish?


