java.lang.Object | |
↳ | android.provider.ContactsContract.Profile |
Constants for the user's profile data, which is represented as a single contact on the device that represents the user. The profile contact is not aggregated together automatically in the same way that normal contacts are; instead, each account (including data set, if applicable) on the device may contribute a single raw contact representing the user's personal profile data from that source.
Access to the profile entry through these URIs (or incidental access to parts of the profile if retrieved directly via ID) requires additional permissions beyond the read/write contact permissions required by the provider. Querying for profile data requires android.permission.READ_PROFILE permission, and inserting or updating profile data requires android.permission.WRITE_PROFILE permission.
CONTACT_ID
column gets the _ID of
the profile Contact. If no match is found, the profile Contact is created and
its _ID is put into the CONTACT_ID
column of the newly
inserted raw contact.CONTENT_URI
for profiles behaves in much the same way as
retrieving a contact by ID, except that it will only ever return the user's
profile contact.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
long | MIN_ID | The minimum ID for any entity that belongs to the profile. |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.provider.BaseColumns
| |||||||||||
From interface
android.provider.ContactsContract.ContactNameColumns
| |||||||||||
From interface
android.provider.ContactsContract.ContactOptionsColumns
| |||||||||||
From interface
android.provider.ContactsContract.ContactStatusColumns
| |||||||||||
From interface
android.provider.ContactsContract.ContactsColumns
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CONTENT_RAW_CONTACTS_URI | Uri for referencing the raw contacts that make up the user's profile
Contacts entry. |
||||||||||
CONTENT_URI | The content:// style URI for this table, which requests the contact entry representing the user's personal profile data. | ||||||||||
CONTENT_VCARD_URI | Uri for referencing the user's profile Contacts entry,
Provides OpenableColumns columns when queried, or returns the
user's profile contact formatted as a vCard when opened through
openAssetFileDescriptor(Uri, String) . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
The minimum ID for any entity that belongs to the profile. This essentially
defines an ID-space in which profile data is stored, and is used by the provider
to determine whether a request via a non-profile-specific URI should be directed
to the profile data rather than general contacts data, along with all the special
permission checks that entails.
Callers may use isProfileId(long)
to check whether a specific ID falls into
the set of data intended for the profile.
Uri
for referencing the raw contacts that make up the user's profile
Contacts
entry. An individual raw contact entry within the profile
can be addressed by appending the raw contact ID. The entities or data within
that specific raw contact can be requested by appending the entity or data
path as well.
The content:// style URI for this table, which requests the contact entry representing the user's personal profile data.
Uri
for referencing the user's profile Contacts
entry,
Provides OpenableColumns
columns when queried, or returns the
user's profile contact formatted as a vCard when opened through
openAssetFileDescriptor(Uri, String)
.