A blog for technology, SEO tips, website development and open source programming.

Android AsyncTask explained

0 768

Android AsyncTask explained is an abstract class that it is performing heavy tasks in the background, check out the post below to get more in depth about Android Async Task.



[alert type=white ]

More Android Tutorials

How to Speed up your Android Smartphone

Check Android power source charge Tutorial

Enable Developer Options on Android device

[/alert]

Android AsyncTask explained

The Android AsyncTask is an abstract class provided by Android which gives us the liberty to perform heavy tasks in the background and keep the UI thread light thus making the application more responsive.

Android application runs on a single thread when launched.

Due to this single thread model tasks that take longer time to fetch the response can make the application non-responsive.

To avoid this we use android AsyncTask to perform the heavy tasks in background on a dedicated thread and passing the results back to the UI thread.

Hence use of AsyncTask in android application keeps the UI thread responsive at all times.

Follow me on Instagram

Basic methods used in an android AsyncTask class are defined below :

**doInBackground**()

This method contains the code which needs to be executed in background. In this method we can send results multiple times to the UI thread by publishProgress() method. To notify that the background processing has been completed we just need to use the return statements

**onPreExecute**()

This method contains the code which is executed before the background processing starts

**onPostExecute**()

This method is called after doInBackground method completes processing. Result from doInBackground is passed to this method

**onProgressUpdate**()

This method receives progress updates from doInBackground method, which is published via publishProgress method, and this method can use this progress update to update the UI thread




Three generic types that are used in an android AsyncTask class are given below :

**Params** : The type of the parameters sent to the task upon execution
**Progress** : The type of the progress units published during the background computation
**Result** : The type of the result of the background computation

Subscribe to get notified about new tutorials. And if you have any questions or ideas for new tutorials, just leave a comment below the post.

youtube-subscribe-button

Leave a Reply

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More