Android AsyncTask理解

AsyncTask的特点是任务在主线程之外运行,而回调方法是在主线程中执行,这就有效地避免了使用Handler带来的麻烦。阅读AsyncTask的源码可知,AsyncTask是使用java.util.concurrent 框架来管理线程以及任务的执行的,concurrent框架是一个非常成熟,高效的框架,经过了严格的测试。这说明AsyncTask的设计很好的解决了匿名线程存在的问题。
AsyncTask是抽象类,其结构图如下图所示:
1
AsyncTask定义了三种泛型类型 Params,Progress和Result。
Params 启动任务执行的输入参数,比如HTTP请求的URL。
Progress 后台任务执行的百分比。
Result 后台执行任务最终返回的结果,比如String。
子类必须实现抽象方法doInBackground(Params… p) ,在此方法中实现任务的执行工作,比如连接网络获取数据等。通常还应该实现onPostExecute(Result r)方法,因为应用程序关心的结果在此方法中返回。需要注意的是AsyncTask一定要在主线程中创建实例。
AsyncTask的执行分为四个步骤,每一步都对应一个回调方法,需要注意的是这些方法不应该由应用程序调用,开发者需要做的就是实现这些方法。在任务的执行过程中,这些方法被自动调用,运行过程,如下图所示:
2
onPreExecute() 当任务执行之前开始调用此方法,可以在这里显示进度对话框。
doInBackground(Params…) 此方法在后台线程执行,完成任务的主要工作,通常需要较长的时间。在执行过程中可以调用publicProgress(Progress…)来更新任务的进度。
onProgressUpdate(Progress…) 此方法在主线程执行,用于显示任务执行的进度。
onPostExecute(Result) 此方法在主线程执行,任务执行的结果作为此方法的参数返回
Java代码 复制代码
  1. 举个简单的例子如下:
  2. // 设置三种类型参数分别为String,Integer,String
  3. class PageTask extends AsyncTask {
  4. // 可变长的输入参数,与AsyncTask.exucute()对应
  5. @Override
  6. protected String doInBackground(String… params) {
  7. try {
  8. HttpClient client = new DefaultHttpClient();
  9. // params[0]代表连接的url
  10. HttpGet get = new HttpGet(params[0]);
  11. HttpResponse response = client.execute(get);
  12. HttpEntity entity = response.getEntity();
  13. long length = entity.getContentLength();
  14. InputStream is = entity.getContent();
  15. String s = null;
  16. if (is != null) {
  17. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  18. byte[] buf = new byte[128];
  19. int ch = -1;
  20. int count = 0;
  21. while ((ch = is.read(buf)) != -1) {
  22. baos.write(buf, 0, ch);
  23. count += ch;
  24. if (length > 0) {
  25. // 如果知道响应的长度,调用publishProgress()更新进度
  26. publishProgress((int) ((count / (float) length) * 100));
  27. }
  28. // 为了在模拟器中清楚地看到进度,让线程休眠100ms
  29. Thread.sleep(100);
  30. }
  31. s = new String(baos.toByteArray()); }
  32. // 返回结果
  33. return s;
  34. } catch (Exception e) {
  35. e.printStackTrace();
  36. }
  37. return null;
  38. }
  39. @Override
  40. protected void onCancelled() {
  41. super.onCancelled();
  42. }
  43. @Override
  44. protected void onPostExecute(String result) {
  45. // 返回HTML页面的内容
  46. message.setText(result);
  47. }
  48. @Override
  49. protected void onPreExecute() {
  50. // 任务启动,可以在这里显示一个对话框,这里简单处理
  51. message.setText(R.string.task_started);
  52. }
  53. @Override
  54. protected void onProgressUpdate(Integer… values) {
  55. // 更新进度
  56. message.setText(values[0]);
  57. }
  58. }
举个简单的例子如下:
// 设置三种类型参数分别为String,Integer,String
class PageTask extends AsyncTask {
// 可变长的输入参数,与AsyncTask.exucute()对应
@Override
protected String doInBackground(String… params) {
try {
HttpClient client = new DefaultHttpClient();
// params[0]代表连接的url
HttpGet get = new HttpGet(params[0]);
HttpResponse response = client.execute(get);
HttpEntity entity = response.getEntity();
long length = entity.getContentLength();
InputStream is = entity.getContent();
String s = null;
if (is != null) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buf = new byte[128];
int ch = -1;
int count = 0;
while ((ch = is.read(buf)) != -1) {
baos.write(buf, 0, ch);
count += ch;
if (length > 0) {
// 如果知道响应的长度,调用publishProgress()更新进度
publishProgress((int) ((count / (float) length) * 100));
}
// 为了在模拟器中清楚地看到进度,让线程休眠100ms
Thread.sleep(100);
}
s = new String(baos.toByteArray()); }
// 返回结果
return s;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onCancelled() {
super.onCancelled();
}
@Override
protected void onPostExecute(String result) {
// 返回HTML页面的内容
message.setText(result);
}
@Override
protected void onPreExecute() {
// 任务启动,可以在这里显示一个对话框,这里简单处理
message.setText(R.string.task_started);
}
@Override
protected void onProgressUpdate(Integer… values) {
// 更新进度
message.setText(values[0]);
}
}

执行PageTask非常简单,只需要调用如下代码。
PageTask task = new PageTask();
task.execute(url.getText().toString());

你可能感兴趣的:(android,AsyncTask,成熟,休闲,结构图)