Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
Added in API level 1
public static interface

MessageQueue.IdleHandler

android.os.MessageQueue.IdleHandler

Class Overview

Callback interface for discovering when a thread is going to block waiting for more messages.

Summary

Public Methods
abstract boolean queueIdle ()
Called when the message queue has run out of messages and will now wait for more.

Public Methods

public abstract boolean queueIdle ()

Added in API level 1

Called when the message queue has run out of messages and will now wait for more. Return true to keep your idle handler active, false to have it removed. This may be called if there are still messages pending in the queue, but they are all scheduled to be dispatched after the current time.