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)
.
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
|
int STATUS_LOCATION_DISABLED
GPS provider or Location is disabled, updates will not be received until they are enabled.
Constant Value: 2 (0x00000002)
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)
int STATUS_READY
GNSS Measurements are successfully being tracked, it will receive updates once they are available.
Constant Value: 1 (0x00000001)
void onGnssMeasurementsReceived (GnssMeasurementsEvent eventArgs)
Reports the latest collected GNSS Measurements.
Parameters | |
---|---|
eventArgs |
GnssMeasurementsEvent
|
void onStatusChanged (int status)
Reports the latest status of the GNSS Measurements sub-system.
Parameters | |
---|---|
status |
int
|