A builder for CurrentLocationRequest.
|
Builder()
Constructs a new builder with default values.
|
|
|
Builder(CurrentLocationRequest
request)
Constructs a new builder with values copied from the given
CurrentLocationRequest.
|
| CurrentLocationRequest |
build()
Builds a new
CurrentLocationRequest.
|
| CurrentLocationRequest.Builder |
setDurationMillis(long durationMillis)
Sets the duration in milliseconds of the location request used to derive the
current location if no historical location satisfies the current location
request.
|
| CurrentLocationRequest.Builder |
setGranularity(int granularity)
Sets the
Granularity
of locations returned for this request.
|
| CurrentLocationRequest.Builder |
setMaxUpdateAgeMillis(long maxUpdateAgeMillis)
Sets the maximum age of any location returned for this request.
|
| CurrentLocationRequest.Builder |
setPriority(int priority)
Sets the
Priority
of the location request used to derive the current location if no historical
location satisfies the current location request.
|
Constructs a new builder with default values.
Constructs a new builder with values copied from the given CurrentLocationRequest.
Builds a new CurrentLocationRequest.
Sets the duration in milliseconds of the location request used to derive the current location if no historical location satisfies the current location request. If this duration expires with no location, the current location request will return a null location. The current location request may fail and return a null location after a shorter duration, but never a longer duration.
NOTE: Internally, this duration may be capped with what the Fused Location Provider believes is a reasonable maximum duration until it is unlikely that any current location can be derived. This value is usually around roughly 30 seconds.
The default value is Long.MAX_VALUE.
Sets the Granularity
of locations returned for this request. This controls whether fine or coarse locations
may be returned.
The default value is
Granularity.GRANULARITY_PERMISSION_LEVEL.
Sets the maximum age of any location returned for this request. A value of 0
indicates that only freshly derived locations will be returned, and no historical
locations will ever be returned. A value Long.MAX_VALUE
represents an effectively unbounded maximum age.
NOTE: This parameter applies only to historical locations. Freshly derived locations should almost always have timestamps close to the present time - however it is possible under unlikely conditions for location derivation to take longer than expected, in which case freshly derived locations may have slightly older timestamps.
The default value is 1 minute. Do not rely on the default value always being 1 minute as this may change without notice.
Sets the Priority
of the location request used to derive the current location if no historical location
satisfies the current location request.
The default value is
Priority.PRIORITY_BALANCED_POWER_ACCURACY.