CallLog.Locations


public static class CallLog.Locations
extends Object implements BaseColumns

java.lang.Object
   ↳ android.provider.CallLog.Locations


Table that contains information on location data sent via call composer. All fields in this table require the Manifest.permission.ACCESS_FINE_LOCATION permission for access.

Summary

Constants

String AUTHORITY

Authority for the locations content provider.

String CONTENT_ITEM_TYPE

Content type for the location entries.

String CONTENT_TYPE

Content type for the location table.

String LATITUDE

Latitude in degrees.

String LONGITUDE

Longitude in degrees.

Inherited constants

String _COUNT

The count of rows in a directory.

String _ID

The unique ID for a row.

Fields

public static final Uri CONTENT_URI

The content URI for this table

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

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

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Constants

AUTHORITY

Added in API level 31
public static final String AUTHORITY

Authority for the locations content provider.

Constant Value: "call_composer_locations"

CONTENT_ITEM_TYPE

Added in API level 31
public static final String CONTENT_ITEM_TYPE

Content type for the location entries.

Constant Value: "vnd.android.cursor.item/call_composer_location"

CONTENT_TYPE

Added in API level 31
public static final String CONTENT_TYPE

Content type for the location table.

Constant Value: "vnd.android.cursor.dir/call_composer_location"

LATITUDE

Added in API level 31
public static final String LATITUDE

Latitude in degrees. See Location.setLatitude(double).

Type: REAL

Constant Value: "latitude"

LONGITUDE

Added in API level 31
public static final String LONGITUDE

Longitude in degrees. See Location.setLongitude(double).

Type: REAL

Constant Value: "longitude"

Fields

CONTENT_URI

Added in API level 31
public static final Uri CONTENT_URI

The content URI for this table