Difference Between Thread and AsyncTask in Android

本文对比了Thread与AsyncTask在Android应用开发中的不同用途。Thread适用于后台任务且不影响UI更新,而AsyncTask简化了UI线程操作,无需手动管理线程和Handler。通过示例展示了如何使用AsyncTask下载图片并更新UI。

Description

What is difference between Thread and AsyncTask? When to use Thread and when to use AsyncTask?

In any higher programming language, there is concept of multi-tasking. Basically the user needs to run some portion of code without user interaction. A thread is generally developed for that. But in Android, multi-tasking can be done by any of the three methods Thread, Service and AsyncTask. I am currently giving you what is difference between Thread and AsyncTask.

Thread

A thread is a concurrent unit of execution. It has its own call stack. There are two methods to implement threads in applications.

  1. One is providing a new class that extends Thread and overriding its run() method.
  2. The other is providing a new Thread instance with a Runnable object during its creation.

A thread can be executed by calling its "start" method. You can set the "Priority" of a thread by calling its "setPriority(int)" method.

A thread can be used if you have no affect in the UI part. For example, you are calling some web service or download some data, and after download, you are displaying it to your screen. Then you need to use a Handler with a Thread and this will make your application complicated to handle all the responses from Threads.

A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each thread has each message queue. (Like a To do List), and the thread will take each message and process it until the message queue is empty. So, when the Handler communicates, it just gives a message to the caller thread and it will wait to process.

If you use Java threads then you need to handle the following requirements in your own code:

  • Synchronization with the main thread if you post back results to the user interface
  • No default for canceling the thread
  • No default thread pooling
  • No default for handling configuration changes in Android

AsyncTask

AsyncTask enables proper and easy use of the UI thread. This class allows performing background operations and publishing results on the UI thread without having to manipulate threads and/or handlers. An asynchronous task is defined by a computation that runs on a background thread and whose result is published on the UI thread. 

AsyncTask will go through the following 4 stages:

  1. onPreExecute()

    Invoked on the UI thread before the task is executed
     
  2. doInbackground(Params..)

    Invoked on the background thread immediately after onPreExecute() finishes executing.
     
  3. onProgressUpdate(Progress..)

    Invoked on the UI thread after a call to publishProgress(Progress...).
     
  4. onPostExecute(Result)

    Invoked on the UI thread after the background computation finishes.

Why should you use AsyncTask?

  1. Easy to use for a UI Thread. (So, use it when the caller thread is a UI thread).
  2. No need to manipulate Handlers.

Example

private class DownloadImageTask extends AsyncTask<String, Void, Bitmap> {

  ImageView bmImage;

  ProgressDialog pd;

  Context mContext;

 

  public DownloadImageTask(Context context,ImageView bmImage) {

      this.bmImage = bmImage;

      mContext = context;

  }

 

  public void onPreExecute() {

      pd = ProgressDialog.show(mContext, "Downloading","Downloading..Please Wait", true);  

  }

 

  public void onPostExecute(Bitmap result) {

      pd.dismiss();

      if(result!=null)

          bmImage.setImageBitmap(result);

  }

 

  protected Bitmap doInBackground(String... urls) {

      String urldisplay = urls[0];

      Bitmap bitmap = null;

      try {

        InputStream in = new java.net.URL(urldisplay).openStream();

        bitmap = BitmapFactory.decodeStream(in);

      } catch (Exception e) {

          Log.e("Error", e.getMessage());

          e.printStackTrace();

      }

      return bitmap;

  }

}

You can see that, before starting background work, the progress dialog is shown to the user and after completion of background work the progress dialog is dismissed in "onPostExecute". So you can do UI changes in the same class implementation without using Handler and message passing.

To use this class, you need to write the following line:

new DownloadImageTask (Activity.this, sourceImageView).execute(url1);

Summary

In this article, we learned what the differences between Thread and AsyncTask are. Which is better for which condition. It's now clear when to use Thread and when to use AsyncTask.

【最优潮流】直流最优潮流(OPF)课设(Matlab代码实现)内容概要:本文档主要围绕“直流最优潮流(OPF)课设”的Matlab代码实现展开,属于电力系统优化领域的教学与科研实践内容。文档介绍了通过Matlab进行电力系统最优潮流计算的基本原理与编程实现方法,重点聚焦于直流最优潮流模型的构建与求解过程,适用于课程设计或科研入门实践。文中提及使用YALMIP等优化工具包进行建模,并提供了相关资源下载链接,便于读者复现与学习。此外,文档还列举了大量与电力系统、智能优化算法、机器学习、路径规划等相关的Matlab仿真案例,体现出其服务于科研仿真辅导的综合性平台性质。; 适合人群:电气工程、自动化、电力系统及相关专业的本科生、研究生,以及从事电力系统优化、智能算法应用研究的科研人员。; 使用场景及目标:①掌握直流最优潮流的基本原理与Matlab实现方法;②完成课程设计或科研项目中的电力系统优化任务;③借助提供的丰富案例资源,拓展在智能优化、状态估计、微电网调度等方向的研究思路与技术手段。; 阅读建议:建议读者结合文档中提供的网盘资源,下载完整代码与工具包,边学习理论边动手实践。重点关注YALMIP工具的使用方法,并通过复现文中提到的多个案例,加深对电力系统优化问题建模与求解的理解。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值