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

2013-07-16 Thread Piren
again, did you ready the documentation? below honeycomb it is parallel, unless you're aiming for Donut, which i have no idea why. On Tuesday, July 16, 2013 4:06:50 PM UTC+3, Ashish Sharma wrote: > > Hi, > > what if want to support it for below > HONEYCOMB

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

2013-07-16 Thread Kristopher Micinski
Donut is API level 4, well below honeycomb, since it was released in 2009. By the way, you don't *support* different versions, you just get whatever you're on. Why do you need tasks to run in parallel? This is probably an indication you're doing something you shouldn't. In general it is a very

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

2013-07-16 Thread Ashish Sharma
Hi, what if want to support it for below HONEYCOMB version.. On Tuesday, July 16, 2013 4:08:09 PM UTC+5:30, Piren wrote: > > did you read the documentation? > http://developer.android.com/reference/android/

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

2013-07-16 Thread Piren
did you read the documentation? http://developer.android.com/reference/android/os/AsyncTask.html Order of execution > -- > > When first introduced, AsyncTasks were executed serially on a single > background thread. Starting with > DONUT