Re: [android-developers] How to run Async tasks parallely..

2013-07-16 Thread Kristopher Micinski
You probably don't want to use a new thread if a task will suffice, because AsyncTask takes care of many verbose implementation details for you. However, I also remember that (as Piren mentioned) tasks should run on a threadpool starting with Donut. OP: how are you observing the differences betwe

Re: [android-developers] How to run Async tasks parallely..

2013-07-16 Thread lokesh gupta
Doesn't a new Thread solves your purpose? On Tue, Jul 16, 2013 at 3:08 PM, Ashish Sharma wrote: > Hi, > > I have checked that two Async task nerver run parallely . > suppose i started two two async task parallely then second task run only > when first one finish.. > > is there any way to to ru

[android-developers] How to run Async tasks parallely..

2013-07-16 Thread Ashish Sharma
Hi, I have checked that two Async task nerver run parallely . suppose i started two two async task parallely then second task run only when first one finish.. is there any way to to run async tasks parallely? any other alternate way? -- -- You received this message because you are subscrib