to top
Android APIs
Added in API level 9
public static interface

InputQueue.Callback

android.view.InputQueue.Callback
Known Indirect Subclasses

Class Overview

Interface to receive notification of when an InputQueue is associated and dissociated with a thread.

Summary

Public Methods

? Examples
abstract void onInputQueueCreated( InputQueue queue)
Called when the given InputQueue is now associated with the thread making this call, so it can start receiving events from it.

? Examples
abstract void onInputQueueDestroyed( InputQueue queue)
Called when the given InputQueue is no longer associated with the thread and thus not dispatching events.

Public Methods

public abstract void onInputQueueCreated (InputQueue queue)

Added in API level 9

Called when the given InputQueue is now associated with the thread making this call, so it can start receiving events from it.

public abstract void onInputQueueDestroyed (InputQueue queue)

Added in API level 9

Called when the given InputQueue is no longer associated with the thread and thus not dispatching events.

No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.