public
static
interface
InputManager.InputDeviceListener
android.hardware.input.InputManager.InputDeviceListener |
Listens for changes in input devices.
Public methods | |
---|---|
abstract
void
|
onInputDeviceAdded(int deviceId)
Called whenever an input device has been added to the system. |
abstract
void
|
onInputDeviceChanged(int deviceId)
Called whenever the properties of an input device have changed since they were last queried. |
abstract
void
|
onInputDeviceRemoved(int deviceId)
Called whenever an input device has been removed from the system. |
void onInputDeviceAdded (int deviceId)
Called whenever an input device has been added to the system.
Use getInputDevice(int)
to get more information about the device.
Parameters | |
---|---|
deviceId |
int :
The id of the input device that was added.
|
void onInputDeviceChanged (int deviceId)
Called whenever the properties of an input device have changed since they
were last queried. Use getInputDevice(int)
to get
a fresh InputDevice
object with the new properties.
Parameters | |
---|---|
deviceId |
int :
The id of the input device that changed.
|
void onInputDeviceRemoved (int deviceId)
Called whenever an input device has been removed from the system.
Parameters | |
---|---|
deviceId |
int :
The id of the input device that was removed.
|