public
static
interface
InputQueue.Callback
android.view.InputQueue.Callback |
Known Indirect Subclasses |
Interface to receive notification of when an InputQueue is associated and dissociated with a thread.
Public methods | |
---|---|
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. |
abstract
void
|
onInputQueueDestroyed(InputQueue queue)
Called when the given InputQueue is no longer associated with the thread and thus not dispatching events. |
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.
Parameters | |
---|---|
queue |
InputQueue
|
void onInputQueueDestroyed (InputQueue queue)
Called when the given InputQueue is no longer associated with the thread and thus not dispatching events.
Parameters | |
---|---|
queue |
InputQueue
|