Added in API level 31

LocationRequest


class LocationRequest : Parcelable
kotlin.Any
   ↳ android.location.LocationRequest

An encapsulation of various parameters for requesting location via LocationManager.

Summary

Nested classes

A builder class for LocationRequest.

Constants
static Long

Represents a passive only request.

static Int

A quality constant indicating a location provider may choose to satisfy this request by equally balancing power and accuracy constraints.

static Int

A quality constant indicating a location provider may choose to satisfy this request by providing very accurate locations at the expense of potentially increased power usage.

static Int

A quality constant indicating a location provider may choose to satisfy this request by providing less accurate locations in order to save power.

Inherited constants
Public methods
Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

Boolean
equals(other: Any?)

Indicates whether some other object is "equal to" this one.

Long

Returns the duration for which location will be provided before the request is automatically removed.

Long

Returns the desired interval of location updates, or PASSIVE_INTERVAL if this is a passive, no power request.

Long

Returns the maximum time any location update may be delayed, and thus grouped with following updates to enable location batching.

Int

Returns the maximum number of location updates for this request before the request is automatically removed.

Float

Returns the minimum distance between location updates.

Long

Returns the minimum update interval.

Int

Returns the quality hint for this location request.

Int

Returns a hash code value for the object.

String

Returns a string representation of the object.

Unit
writeToParcel(parcel: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<LocationRequest!>

Constants

PASSIVE_INTERVAL

Added in API level 31
static val PASSIVE_INTERVAL: Long

Represents a passive only request. Such a request will not trigger any active locations or power usage itself, but may receive locations generated in response to other requests.

Value: 9223372036854775807L

QUALITY_BALANCED_POWER_ACCURACY

Added in API level 31
static val QUALITY_BALANCED_POWER_ACCURACY: Int

A quality constant indicating a location provider may choose to satisfy this request by equally balancing power and accuracy constraints. Each location provider may interpret this field differently, but location providers will generally use their default behavior when this flag is present.

Value: 102

QUALITY_HIGH_ACCURACY

Added in API level 31
static val QUALITY_HIGH_ACCURACY: Int

A quality constant indicating a location provider may choose to satisfy this request by providing very accurate locations at the expense of potentially increased power usage. Each location provider may interpret this field differently, but as an example, the network provider may choose to return only wifi based locations rather than cell based locations in order to have greater accuracy when this flag is present.

Value: 100

QUALITY_LOW_POWER

Added in API level 31
static val QUALITY_LOW_POWER: Int

A quality constant indicating a location provider may choose to satisfy this request by providing less accurate locations in order to save power. Each location provider may interpret this field differently, but as an example, the network provider may choose to return cell based locations rather than wifi based locations in order to save power when this flag is present.

Value: 104

Public methods

describeContents

Added in API level 31
fun describeContents(): Int

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel,int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.

Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.
Value is either 0 or

equals

Added in API level 31
fun equals(other: Any?): Boolean

Indicates whether some other object is "equal to" this one.

The equals method implements an equivalence relation on non-null object references:

  • It is reflexive: for any non-null reference value x, x.equals(x) should return true.
  • It is symmetric: for any non-null reference values x and y, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any non-null reference values x, y, and z, if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.
  • It is consistent: for any non-null reference values x and y, multiple invocations of x.equals(y) consistently return true or consistently return false, provided no information used in equals comparisons on the objects is modified.
  • For any non-null reference value x, x.equals(null) should return false.

An equivalence relation partitions the elements it operates on into equivalence classes; all the members of an equivalence class are equal to each other. Members of an equivalence class are substitutable for each other, at least for some purposes.

Parameters
obj the reference object with which to compare.
Return
Boolean true if this object is the same as the obj argument; false otherwise.

getDurationMillis

Added in API level 31
fun getDurationMillis(): Long

Returns the duration for which location will be provided before the request is automatically removed. A duration of Long.MAX_VALUE represents an unlimited duration.

Return
Long the duration for which location will be provided.
Value is 1 or greater

getIntervalMillis

Added in API level 31
fun getIntervalMillis(): Long

Returns the desired interval of location updates, or PASSIVE_INTERVAL if this is a passive, no power request. A passive request will not actively generate location updates (and thus will not be power blamed for location), but may receive location updates generated as a result of other location requests. A passive request must always have an explicit minimum update interval set.

Locations may be available at a faster interval than specified here, see getMinUpdateIntervalMillis() for the behavior in that case.

Return
Long the desired interval of location updates.
Value is 0 or greater

getMaxUpdateDelayMillis

Added in API level 31
fun getMaxUpdateDelayMillis(): Long

Returns the maximum time any location update may be delayed, and thus grouped with following updates to enable location batching. If the maximum update delay is equal to or greater than twice the interval, then location providers may provide batched results. The maximum batch size is the maximum update delay divided by the interval. Not all devices or location providers support batching, and use of this parameter does not guarantee that the client will see batched results, or that batched results will always be of the maximum size. When available, batching can provide substantial power savings to the device, and clients are encouraged to take advantage where appropriate for the use case.

Return
Long the maximum time by which a location update may be delayed.
Value is 0 or greater

getMaxUpdates

Added in API level 31
fun getMaxUpdates(): Int

Returns the maximum number of location updates for this request before the request is automatically removed. A max updates value of Integer.MAX_VALUE represents an unlimited number of updates.

Return
Int Value is between 1 and java.lang.Integer#MAX_VALUE inclusive

getMinUpdateDistanceMeters

Added in API level 31
fun getMinUpdateDistanceMeters(): Float

Returns the minimum distance between location updates. If a potential location update is closer to the last location update than the minimum update distance, then the potential location update will not occur. A value of 0 meters implies that no location update will ever be rejected due to failing this constraint.

Return
Float the minimum distance between location updates.
Value is between 0.0f and java.lang.Float#MAX_VALUE inclusive

getMinUpdateIntervalMillis

Added in API level 31
fun getMinUpdateIntervalMillis(): Long

Returns the minimum update interval. If location updates are available faster than the request interval then locations will only be updated if the minimum update interval has expired since the last location update.

Note: Some allowance for jitter is already built into the minimum update interval, so you need not worry about updates blocked simply because they arrived a fraction of a second earlier than expected.

Return
Long the minimum update interval.
Value is 0 or greater

getQuality

Added in API level 31
fun getQuality(): Int

Returns the quality hint for this location request. The quality hint informs the provider how it should attempt to manage any accuracy vs power tradeoffs while attempting to satisfy this location request.

Return
Int the desired quality tradeoffs between accuracy and power.
Value is one of the following:

hashCode

Added in API level 31
fun hashCode(): Int

Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided by java.util.HashMap.

The general contract of hashCode is:

  • Whenever it is invoked on the same object more than once during an execution of a Java application, the hashCode method must consistently return the same integer, provided no information used in equals comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application.
  • If two objects are equal according to the equals method, then calling the hashCode method on each of the two objects must produce the same integer result.
  • It is not required that if two objects are unequal according to the equals method, then calling the hashCode method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
Return
Int a hash code value for this object.

toString

Added in API level 31
fun toString(): String

Returns a string representation of the object.

Return
String This value cannot be null.

writeToParcel

Added in API level 31
fun writeToParcel(
    parcel: Parcel,
    flags: Int
): Unit

Flatten this object in to a Parcel.

Parameters
dest The Parcel in which the object should be written.
This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.
Value is either 0 or a combination of the following:
parcel Parcel: This value cannot be null.

Properties

CREATOR

Added in API level 31
static val CREATOR: Parcelable.Creator<LocationRequest!>