Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got slightly confused about the differences between Handlers, AsyncTasks and Threads in Android. I've read quite a few blogs and questions here in stackoverflow.

Handlers are background threads that provide you to communicate with the UI. Updating a progressbar for instance should be done via Handlers. Using Handlers you have the advantage of MessagingQueues, so if you want to schedule messages or update multiple UI elements or have repeating tasks.

AsyncTasks are similar, infact they make use of Handlers, but doesn't run in the UI thread, so its good for fetching data, for instance fetching webservices. Later you can interact with the UI.

Threads however can't interact with the UI, provide more "basic" threading and you miss all the abstractions of AsyncTasks.

However I would like to have a socket connection run in a service. Should this be run in a handler or a thread, or even an asynctask? UI interaction is not necessary at all. Does it make a difference in terms of performance which I use?

share|improve this question

3 Answers

If you see source code of Asyntask and Handler, you will see their code purely in Java. (of course, there some exceptions, but that is not an important point).

Why does it mean ? It means no magic in Asyntask or Handler. They just make your job easier as a developer.

For example: If ProgramA calls methodA(), methodA() would run in a different thread with ProgramA.You can easily test by:

Thread t = Thread.currentThread();    
 int id = t.getId();

And why you should use new thread ? You can google for it. Many many reasons.

So, what is the difference ?

AsyncTask and Handler are written in Java (internally use a Thread), so everything you can do with Handler or AsyncTask, you can achieve using a Thread too.

What Handler and AsyncTask really help you with?

The most obvious reason is communication between caller thread and worker thread. (Caller Thread: A thread which calls the Worker Thread to perform some task.A Caller Thread may not be the UI Thread always). And, of course, you can communicate between two thread by other ways, but there are many disadvantages, for eg: Main thread isn't thread-safe (in most of time), in other words, DANGEROUS.

That is why you should use Handler and AsyncTask. They do most of the work for you, you just need to know what methods to override.

Difference Handler and AsyncTask: Use AsyncTask when Caller thread is a UI Thread. This is what android document says:

AsyncTask enables proper and easy use of the UI thread. This class allows to perform background operations and publish results on the UI thread without having to manipulate threads and/or handlers

I want to emphasize on two points:

1) Easy use of the UI thread (so, use when caller thread is UI Thread).

2) No need to manipulate handlers. (means: You can use Handler instead of AsyncTask, but AsyncTask is an easier option).

There are many things in this post I haven't said yet, for example: what is UI Thread, of why it easier. You must know some method behind each kind and use it, you will completely understand why..

@: when you read Android document, you will see:

Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue

They may seem strange at first.Just understand that, each thread has each message queue. (like a To do List), and thread will take each message and do it until message queue emty. (Ah, maybe like you finish your work and go to bed). So, when Handler communicates, it just gives a message to caller thread and it will wait to process. (sophiscate ? but you just know that, Handler can communicate with caller thread in safe-way)

share|improve this answer

In my opinion threads aren't the most efficient way of doing socket connections but they do provide the most functionality in terms of running threads. I say that because from experience, running threads for a long time causes devices to be very hot and resource intensive. Even a simple while(true) will heat a phone in minutes. If you say that UI interaction is not important, perhaps an AsyncTask is good because they are designed for long-term processes. This is just my opinion on it.

share|improve this answer
thanks, is there actually a reason I should use Threads instead of AsyncTasks? Or is it more recommended to make use of it? – 80leaves Aug 6 '11 at 0:56
Well it seems that you partly understand AsyncTasks yourself. AsyncTasks are particularly useful for long-term and processor intensive tasks. You could use a Thread, which is what I used on first app that used sockets, but from experience, I've found that Threads are very processor intensive for the amount of work they are intended to do. This might not be the correct reason, but AsyncTasks seem more optimized for Android than just bare-bone Threads. – Brian Aug 6 '11 at 5:00
3  
@AeroDroid In your example: "a simple while(true)", you will peg the CPU here unless you add a sleep state in the loop. This is true of any endless loop. If you want to reduce CPU usage due to this overhead, sleep the thread for a few milliseconds at the end of the loop. – Error 454 Sep 7 '11 at 19:34
1  
@Error 454 - that is interesting! If you had to pick an appropriate number for the sleep time, would it be between 40-80 milliseconds? – Abhijit Nov 10 '11 at 4:20
3  
@Abhijit From the game stuff I've done in SDL, simply adding a 10 ms sleep to the loop was enough to drop from 99% cpu to ~0 during idle states. – Error 454 Nov 11 '11 at 19:36
show 1 more comment

An AsyncTask is used to do some background computation and publish the result to the UI thread (with optional progress updates). Since you're not concerned with UI, then a Handler or Thread seems more appropriate.

You can spawn a background Thread and pass messages back to your main thread by using the Handler's post method.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.