Summary: Ctors | Methods | Inherited Methods
public
abstract
class
SensorEventCallback
extends Object
implements
SensorEventListener2
Used for receiving sensor additional information frames.
Summary
Public constructors | |
|---|---|
SensorEventCallback()
|
|
Public methods | |
|---|---|
void
|
onAccuracyChanged(Sensor sensor, int accuracy)
Called when the accuracy of the registered sensor has changed. |
void
|
onFlushCompleted(Sensor sensor)
Called after flush() is completed. |
void
|
onSensorAdditionalInfo(SensorAdditionalInfo info)
Called when a sensor additional information frame is available. |
void
|
onSensorChanged(SensorEvent event)
Called when sensor values have changed. |
Inherited methods | |||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
From class
| |||||||||||||||||||||||
|
From interface
| |||||||||||||||||||||||
|
From interface
| |||||||||||||||||||||||
Public constructors
SensorEventCallback
public SensorEventCallback ()
Public methods
onAccuracyChanged
public void onAccuracyChanged (Sensor sensor, int accuracy)
Called when the accuracy of the registered sensor has changed.
| Parameters | |
|---|---|
sensor |
Sensor |
accuracy |
int: The new accuracy of this sensor, one of
SensorManager.SENSOR_STATUS_* |
onFlushCompleted
public void onFlushCompleted (Sensor sensor)
Called after flush() is completed.
| Parameters | |
|---|---|
sensor |
Sensor: The Sensor on which flush was called. |
onSensorAdditionalInfo
public void onSensorAdditionalInfo (SensorAdditionalInfo info)
Called when a sensor additional information frame is available.
| Parameters | |
|---|---|
info |
SensorAdditionalInfo: A SensorAdditionalInfo frame
reported from sensor hardware. |
onSensorChanged
public void onSensorChanged (SensorEvent event)
Called when sensor values have changed.
| Parameters | |
|---|---|
event |
SensorEvent: the SensorEvent. |