Creating another AsyncTask inside of doInBackground

前端 未结 2 704
Happy的楠姐
Happy的楠姐 2020-12-21 23:16

I recently looked through SO to find the answer to the same question here, but there was not an answer directed at the question in regards to the risk of doing so. But basi

相关标签:
2条回答
  • 2020-12-21 23:45

    From the API docs:

    •The task instance must be created on the UI thread.

    doInBackground() runs on the background thread. So you cannot create and run another asynctask from doInBackground().

    http://developer.android.com/reference/android/os/AsyncTask. Have a look at the topic under threading rules.

    When an asynchronous task is executed, the task goes through 4 steps: (Straight from the doc)

    1.onPreExecute(), invoked on the UI thread before the task is executed. This step is normally used to setup the task, for instance by showing a progress bar in the user interface.

    2.doInBackground(Params...), invoked on the background thread immediately after onPreExecute() finishes executing. This step is used to perform background computation that can take a long time. The parameters of the asynchronous task are passed to this step. The result of the computation must be returned by this step and will be passed back to the last step. This step can also use publishProgress(Progress...) to publish one or more units of progress. These values are published on the UI thread, in the onProgressUpdate(Progress...) step.

    3.onProgressUpdate(Progress...), invoked on the UI thread after a call to publishProgress(Progress...). The timing of the execution is undefined. This method is used to display any form of progress in the user interface while the background computation is still executing. For instance, it can be used to animate a progress bar or show logs in a text field.

    4.onPostExecute(Result), invoked on the UI thread after the background computation finishes. The result of the background computation is passed to this step as a parameter.

    When first introduced, AsyncTasks were executed serially on a single background thread. Starting with DONUT, this was changed to a pool of threads allowing multiple tasks to operate in parallel. Starting with HONEYCOMB, tasks are executed on a single thread to avoid common application errors caused by parallel execution.

    If you truly want parallel execution, you can invoke executeOnExecutor(java.util.concurrent.Executor, Object[]) with THREAD_POOL_EXECUTOR.

    Also you can consider using an alternative RoboSpice.https://github.com/octo-online/robospice.

    Can make multiple spice request. Notitifes on the ui thread when task is complete. Worth having a look at robospice.

    0 讨论(0)
  • 2020-12-21 23:58

    AsyncTask(), with the exception of the Honeycomb releases, execute serially. So, no, you cannot execute another AsyncTask() from within doInBackground() -- I guess I should say that I've never tried it, but it's highly unlikely you're going to achieve the desired affect.

    I asked about AsyncTask() execution during one of the Google Office Hours. Straight from their mouths when asked, "Why did it change from serial to parallel and back to serial execution?"; "Because it broke a lot of stuff."

    0 讨论(0)
提交回复
热议问题