Difference Between Thread and AsyncTask in Android

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

  1. private class DownloadImageTask extends AsyncTask<String, Void, Bitmap> {  
  2.   
  3.   ImageView bmImage;  
  4.   
  5.   ProgressDialog pd;  
  6.   
  7.   Context mContext;  
  8.   
  9.   public DownloadImageTask(Context context,ImageView bmImage) {  
  10.   
  11.       this.bmImage = bmImage;  
  12.   
  13.       mContext = context;  
  14.   
  15.   }  
  16.   
  17.   public void onPreExecute() {  
  18.   
  19.       pd = ProgressDialog.show(mContext, "Downloading","Downloading..Please Wait"true);    
  20.   
  21.   }  
  22.   
  23.   public void onPostExecute(Bitmap result) {  
  24.   
  25.       pd.dismiss();  
  26.   
  27.       if(result!=null){  
  28.           bmImage.setImageBitmap(result);  
  29.      }  
  30.   } 

  31.   protected Bitmap doInBackground(String... urls) {  
  32.       String urldisplay = urls[0];  
  33.       Bitmap bitmap = null;  
  34.       try {  
  35.         InputStream in = new java.net.URL(urldisplay).openStream();  
  36.         bitmap = BitmapFactory.decodeStream(in);  
  37.       } catch (Exception e) {  
  38.           Log.e("Error", e.getMessage());  
  39.           e.printStackTrace();  
  40.       }  
  41.       return bitmap;  
  42.   }  


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:

  1. 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.
 

Up Next
    Ebook Download
    View all
    Learn
    View all