Looper,Handler and MessageQueue in Android

Updated 5 March 2018

Save

In this blog we are going to covers Android Looper, Handler, and MessageQueue. These are the core component in Android OS which is essential to create an unblocked responsive UI.

Looper: 

Looper is a worker that serves a MessageQueue for current thread. Looper loops through message queue and sends messages to corresponding handlers to process.

Handler:

It allows you to send and process Message and Runnable objects associated with a thread’s MessageQueue. Each Handler instance is associated with a single thread and that thread’s message queue

MessageQueue:

Android application maintain a queue of task that need to be update the UI thread is know as MessageQueue.

These are among the building blocks of Android OS. Whenever we create a new thread is one-time use only and die after executing its run method. But in Android UI thread kept alive while the application is running so there is a role of looper which helps to keep alive the UI thread which loop through MessageQueue to execute the task on Android UI thread.

Kindly, go through the below image for better understanding.

 

 

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home