public abstract class SensorEventCallback
extends Object
implements SensorEventListener2
java.lang.Object | |
↳ | android.hardware.SensorEventCallback |
Used for receiving sensor additional information frames.
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 |
|
---|---|
![]() java.lang.Object
|
|
![]() android.hardware.SensorEventListener2
|
|
![]() android.hardware.SensorEventListener
|
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_* |
See also:
void onFlushCompleted (Sensor sensor)
Called after flush() is completed.
Parameters | |
---|---|
sensor |
Sensor : The Sensor on which flush was called. |
See also:
void onSensorAdditionalInfo (SensorAdditionalInfo info)
Called when a sensor additional information frame is available.
Parameters | |
---|---|
info |
SensorAdditionalInfo : A SensorAdditionalInfo frame reported from sensor hardware. |
void onSensorChanged (SensorEvent event)
Called when sensor values have changed.
Parameters | |
---|---|
event |
SensorEvent : the SensorEvent . |
See also: