Locations
open class Locations : BaseColumns
| kotlin.Any | |
| ↳ | 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 | |
|---|---|
| static String | Authority for the locations content provider. | 
| static String | Content type for the location entries. | 
| static String | Content type for the location table. | 
| static String | Latitude in degrees. | 
| static String | Longitude in degrees. | 
| Inherited constants | |
|---|---|
| Properties | |
|---|---|
| static Uri | The content URI for this table | 
Constants
AUTHORITY
static val AUTHORITY: String
Authority for the locations content provider.
Value: "call_composer_locations"CONTENT_ITEM_TYPE
static val CONTENT_ITEM_TYPE: String
Content type for the location entries.
Value: "vnd.android.cursor.item/call_composer_location"CONTENT_TYPE
static val CONTENT_TYPE: String
Content type for the location table.
Value: "vnd.android.cursor.dir/call_composer_location"LATITUDE
static val LATITUDE: String
Latitude in degrees. See android.location.Location#setLatitude(double). 
Type: REAL
Value: "latitude"LONGITUDE
static val LONGITUDE: String
Longitude in degrees. See android.location.Location#setLongitude(double). 
Type: REAL
Value: "longitude"