At a certain point of my AsyncTask, after some validations have been done, I need to spawn off another thread to do some other work. So I\'d like two background threads at t
If you are looking for a mechanism of executing multiple async tasks, from 3.0 and above it supports a method called executeOnExecutor which will allow you to schedule tasks in parallel on a pool of thread managed by Async Task.