码迷,mamicode.com
首页 > 编程语言 > 详细

多线程——AsyncTask类的使用(一)

时间:2014-05-15 03:09:23      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:asynctask

When an asynchronous task is executed, the task goes through 4 steps:

  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.


当在主线程中调用new MyTask().execute(args)时,触发

execute()将参数传给doInBackground()

doInBackground()返回值传给onPostExecute()


在doInBackground()中调用的publishProgress()的参数,传递给onProgressUpdate()

多线程——AsyncTask类的使用(一),布布扣,bubuko.com

多线程——AsyncTask类的使用(一)

标签:asynctask

原文地址:http://just2012.blog.51cto.com/7435167/1410715

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!