Most visited

Recently visited

Added in API level 24

SensorEventCallback

public abstract class SensorEventCallback
extends Object implements SensorEventListener2

java.lang.Object
   ↳ android.hardware.SensorEventCallback


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 java.lang.Object
From interface android.hardware.SensorEventListener2
From interface android.hardware.SensorEventListener

Public constructors

SensorEventCallback

Added in API level 24
SensorEventCallback ()

Public methods

onAccuracyChanged

Added in API level 24
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:

onFlushCompleted

Added in API level 24
void onFlushCompleted (Sensor sensor)

Called after flush() is completed.

Parameters
sensor Sensor: The Sensor on which flush was called.

See also:

onSensorAdditionalInfo

Added in API level 24
void onSensorAdditionalInfo (SensorAdditionalInfo info)

Called when a sensor additional information frame is available.

Parameters
info SensorAdditionalInfo: A SensorAdditionalInfo frame reported from sensor hardware.

onSensorChanged

Added in API level 24
void onSensorChanged (SensorEvent event)

Called when sensor values have changed.

Parameters
event SensorEvent: the SensorEvent.

See also:

Hooray!