java.lang.Object | |
↳ | com.google.android.gms.location.LocationCallback |
Used for receiving notifications from the FusedLocationProviderApi
when the device
location has changed or can no longer be determined. The methods are called if the LocationCallback
has been registered with the location client using the requestLocationUpdates(GoogleApiClient, LocationRequest, LocationCallback, Looper)
method.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Called when there is a change in the availability of location data.
| |||||||||||
Called when device location information is available.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Called when there is a change in the availability of location data.
When isLocationAvailable()
returns false
you can assume
that location will not be returned in onLocationResult(LocationResult)
until something changes in the
device's settings or environment. Even when isLocationAvailable()
returns true
the onLocationResult(LocationResult)
may not always be called regularly, however
the device location is known and both the most recently delivered location and getLastLocation(GoogleApiClient)
will be reasonably up to date given the hints
specified by the active LocationRequest
s.
Parameters | |
---|---|
locationAvailability |
LocationAvailability : The current status of location availability.
|
Called when device location information is available.
The most recent location returned by getLastLocation()
is not
guaranteed to be immediately fresh, but will be reasonably up to date given the hints specified
by the active LocationRequest
s.
Parameters | |
---|---|
result |
LocationResult : The latest location result available.
|