Android Core

Android: Loaders versus AsyncTask

One of the biggest pieces of Android that I have neglected to learn about would be Loaders. Seeing as it’s time for me to learn it, perhaps I can help you out a bit with it as well. My main interest with the Loader concept is how it melds with the tried and true AsyncTask, and if it’s really better or not.
 
 
 
 
 
 
 

AsyncTask

Before getting into the Loader concept, it’s important to have a good idea of what the AsyncTask is and what it’s used for within Android. If you have written any sort of application for Android, chances are you have played with the AsyncTask, or at the very least heard of it. In Android, the AsyncTask class is one of the core development tools that most apps use. It gives the developer an easy way to do processing on a thread that isn’t the UI thread. This keeps the UI thread focused on the UI instead of other time-intensive tasks, such as disk or server calls. There are a few issues with using AsyncTasks, though:

  • Configuration changes can mess things up
  • Pausing an activity doesn’t pause the AsyncTask
  • A fair amount of boilerplate code (which means more possible errors)

Loaders

The AsyncTask isn’t the only way to do background processing in Android, though. The Loader class is a much newer construct in Android (although now it’s getting a bit dated). It was released with Honeycomb(3.0) and is now included in the Support Library. The beauty of the Loader is that it handles some of the ‘gotchas’ that usually are missed when using the AsyncTask. Mainly, it handles activity configuration changes (IE when the user rotates the screen).

Loaders (specifically the CursorLoader) really shine when using Cursors within Android to pull data. The Loader class does an excellent job of updating the Cursor information (and in turn, the UI) whenever the underlying data changes. This is immensely helpful when information changes often and you don’t want to interrupt the UI, and whatever the user is currently doing, just to display some new information.

One particular subclass of Loaders is of interest: the AsyncTaskLoader. This class performs the same function as the AsyncTask, but a bit better. It can handle Activity configuration changes more easily, and it behaves within the life cycles of Fragments and Activities. The nice thing is that the AsyncTaskLoader can be used in any situation that the AsyncTask is being used. Anytime data needs to be loaded into memory for the Activity/Fragment to handle, The AsyncTaskLoader can do the job better.

To really get into the details of how to actually implement a AsyncTaskLoader, check out these sources:

 

Reference: Android: Loaders versus AsyncTask from our JCG partner Isaac Taylor at the Programming Mobile blog.

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

8 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Sree Ramakrishna
11 years ago

Hi, I think you need to correct the statement. “The AsyncTask isn’t
the only way to do background processing in Android,” Please refer
android developer blog for better understanding of background processing Android.

Sameer
11 years ago

Mr. Sree
“The AsyncTask isn’t the only way to do background processing in Android.” is damn correct. As you can perform background Task using Thread and Handler or Service also. I have Gone through android since 2 years.

feresr
feresr
9 years ago

,

At least explain yourself. I agree with on this, Android has a tons of ways of doing things.

mikeb
mikeb
8 years ago
Reply to  feresr

maybe too much ways…..

Sameer
11 years ago

Yes correctly pointed out issue. Handling asynchronous Task while changing orientation is quite mess the things. But loader itself can not perform the background task, It uses asynchronous and then just stop calling same process again by saving result automatically while activity recreating. It delivered the same result to activity again. Using Loader Manager To handling orientation in better way

Anonymous
Anonymous
10 years ago

To fetch data from webservices, Shall we use AsyncTaskLoader or just AsyncTask ?

stackvoid
9 years ago
Reply to  Anonymous

I think both could do the job. Loader do a bit better.

Jaishri
Jaishri
4 years ago
Reply to  stackvoid

can we use Loader if no network or interrupted network call while downloading or uploading data

Back to top button