ContactsContract Class

Definition

The contract between the contacts provider and applications.

[Android.Runtime.Register("android/provider/ContactsContract", DoNotGenerateAcw=true)]
public sealed class ContactsContract : Java.Lang.Object
[<Android.Runtime.Register("android/provider/ContactsContract", DoNotGenerateAcw=true)>]
type ContactsContract = class
    inherit Object
Inheritance
ContactsContract
Attributes

Remarks

The contract between the contacts provider and applications. Contains definitions for the supported URIs and columns. These APIs supersede Contacts.

<h3>Overview</h3>

ContactsContract defines an extensible database of contact-related information. Contact information is stored in a three-tier data model:

<ul> <li> A row in the Data table can store any kind of personal data, such as a phone number or email addresses. The set of data kinds that can be stored in this table is open-ended. There is a predefined set of common kinds, but any application can add its own data kinds. </li> <li> A row in the RawContacts table represents a set of data describing a person and associated with a single account (for example, one of the user's Gmail accounts). </li> <li> A row in the Contacts table represents an aggregate of one or more RawContacts presumably describing the same person. When data in or associated with the RawContacts table is changed, the affected aggregate contacts are updated as necessary. </li> </ul>

Other tables include:

<ul> <li> Groups, which contains information about raw contact groups such as Gmail contact groups. The current API does not support the notion of groups spanning multiple accounts. </li> <li> StatusUpdates, which contains social status updates including IM availability. </li> <li> AggregationExceptions, which is used for manual aggregation and disaggregation of raw contacts </li> <li> Settings, which contains visibility and sync settings for accounts and groups. </li> <li> SyncState, which contains free-form data maintained on behalf of sync adapters </li> <li> PhoneLookup, which is used for quick caller-ID lookup</li> </ul>

Java documentation for android.provider.ContactsContract.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Constructors

ContactsContract()

Fields

Authority

The authority for the contacts provider

CallerIsSyncadapter

An optional URI parameter for insert, update, or delete queries that allows the caller to specify that it is a sync adapter.

DeferredSnippeting

A key to a boolean in the "extras" bundle of the cursor.

DeferredSnippetingQuery

Key to retrieve the original deferred snippeting from the cursor on the client side.

DirectoryParamKey

Query parameter that should be used by the client to access a specific Directory.

LimitParamKey

A query parameter that limits the number of results returned for supported URIs.

PrimaryAccountName

A query parameter specifing a primary account.

PrimaryAccountType

A query parameter specifing a primary account.

RemoveDuplicateEntries

A boolean parameter for CommonDataKinds.Phone#CONTENT_URI Phone.CONTENT_URI, CommonDataKinds.Email#CONTENT_URI Email.CONTENT_URI, and CommonDataKinds.StructuredPostal#CONTENT_URI StructuredPostal.CONTENT_URI.

StrequentPhoneOnly

A boolean parameter for Contacts#CONTENT_STREQUENT_URI and Contacts#CONTENT_STREQUENT_FILTER_URI, which requires the ContactsProvider to return only phone-related results.

Properties

AuthorityUri

A content:// style uri to the authority for the contacts provider

Class

Returns the runtime class of this Object.

(Inherited from Object)
Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
PeerReference (Inherited from Object)
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)
ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

(Inherited from Object)

Methods

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

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

(Inherited from Object)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
IsProfileId(Int64)

This method can be used to identify whether the given ID is associated with profile data.

JavaFinalize()

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

(Inherited from Object)
Notify()

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

(Inherited from Object)
NotifyAll()

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

(Inherited from Object)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

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

(Inherited from Object)
Wait(Int64)

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

(Inherited from Object)
Wait(Int64, Int32)

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

(Inherited from Object)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to