Most visited

Recently visited

Added in API level 24

GnssMeasurementsEvent.Callback

public static abstract class GnssMeasurementsEvent.Callback
extends Object

java.lang.Object
   ↳ android.location.GnssMeasurementsEvent.Callback


Used for receiving GNSS satellite measurements from the GNSS engine. Each measurement contains raw and computed data identifying a satellite. You can implement this interface and call registerGnssMeasurementsCallback(GnssMeasurementsEvent.Callback).

Summary

Constants

int STATUS_LOCATION_DISABLED

GPS provider or Location is disabled, updates will not be received until they are enabled.

int STATUS_NOT_SUPPORTED

The system does not support tracking of GNSS Measurements.

int STATUS_READY

GNSS Measurements are successfully being tracked, it will receive updates once they are available.

Public constructors

GnssMeasurementsEvent.Callback()

Public methods

void onGnssMeasurementsReceived(GnssMeasurementsEvent eventArgs)

Reports the latest collected GNSS Measurements.

void onStatusChanged(int status)

Reports the latest status of the GNSS Measurements sub-system.

Inherited methods

From class java.lang.Object

Constants

STATUS_LOCATION_DISABLED

Added in API level 24
int STATUS_LOCATION_DISABLED

GPS provider or Location is disabled, updates will not be received until they are enabled.

Constant Value: 2 (0x00000002)

STATUS_NOT_SUPPORTED

Added in API level 24
int STATUS_NOT_SUPPORTED

The system does not support tracking of GNSS Measurements.

This status will not change in the future.

Constant Value: 0 (0x00000000)

STATUS_READY

Added in API level 24
int STATUS_READY

GNSS Measurements are successfully being tracked, it will receive updates once they are available.

Constant Value: 1 (0x00000001)

Public constructors

GnssMeasurementsEvent.Callback

Added in API level 24
GnssMeasurementsEvent.Callback ()

Public methods

onGnssMeasurementsReceived

Added in API level 24
void onGnssMeasurementsReceived (GnssMeasurementsEvent eventArgs)

Reports the latest collected GNSS Measurements.

Parameters
eventArgs GnssMeasurementsEvent

onStatusChanged

Added in API level 24
void onStatusChanged (int status)

Reports the latest status of the GNSS Measurements sub-system.

Parameters
status int

Hooray!