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_DISABLEDGPS provider or Location is disabled, updates will not be received until they are enabled. |
int | STATUS_NOT_SUPPORTEDThe system does not support tracking of GNSS Measurements. |
int | STATUS_READYGNSS 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 | |
|---|---|
java.lang.Object | |
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)
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)
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)
added in API level 24
GnssMeasurementsEvent.Callback ()
added in API level 24
void onGnssMeasurementsReceived (GnssMeasurementsEvent eventArgs)
Reports the latest collected GNSS Measurements.
| Parameters | |
|---|---|
eventArgs | GnssMeasurementsEvent |
added in API level 24
void onStatusChanged (int status)
Reports the latest status of the GNSS Measurements sub-system.
| Parameters | |
|---|---|
status | int |
尚无评论!