Most visited

Recently visited

Added in API level 5

ContactsContract.Data

public static final class ContactsContract.Data
extends Object implements ContactsContract.DataColumnsWithJoins

java.lang.Object
   ↳ android.provider.ContactsContract.Data


数据表的常量,其中包含绑定到原始联系人的数据点。 数据表的每一行通常用于存储单个联系人信息(例如电话号码)及其关联的元数据(例如,它是工作还是家庭号码)。

Data kinds

数据是一个通用表格,可以容纳任何类型的联系人数据。 存储在给定行中的数据类型由行MIMETYPE值指定,该值确定了通用列DATA1DATA15 例如,如果数据类型为Phone.CONTENT_ITEM_TYPE ,则列DATA1存储电话号码,但如果数据类型为Email.CONTENT_ITEM_TYPE ,则DATA1将存储电子邮件地址。 同步适配器和应用程序可以引入它们自己的数据种类。

ContactsContract限定了少数预定义的数据种,例如 ContactsContract.CommonDataKinds.PhoneContactsContract.CommonDataKinds.Email等为方便起见,这些类定义数据类型的特定别名DATA1等。例如, Phone.NUMBER相同 Data.DATA1

DATA1是一个索引列,应该用于查询选择中最常用的数据元素。 例如,对于表示电子邮件地址的行DATA1可能应该用于电子邮件地址本身,而DATA2等可用于辅助信息,例如电子邮件地址的类型。

按照惯例, DATA15用于存储BLOB(二进制数据)。

给定帐户类型的同步适配器必须正确处理相应原始联系人中使用的每种数据类型。 否则可能导致数据丢失或损坏。

同样,您应该避免为其他方的帐户类型引入新的数据。 例如,如果您向Google帐户拥有的原始联系人添加“最喜欢的歌曲”的数据行,则该数据行不会与服务器同步,因为Google同步适配器不知道如何处理此类数据。 因此,通常会引入新的数据类型以及新的帐户类型,即新的同步适配器。

Batch operations

数据行可以被插入/更新/使用传统的删除insert(Uri, ContentValues)update(Uri, ContentValues, String, String[])delete(Uri, String, String[])方法,但是基于批次的新机制ContentProviderOperation将被证明是在几乎所有情况下,更好的选择。 批处理中的所有操作都在单个事务中执行,这可确保原始联系人的电话端和服务器端状态始终保持一致。 此外,基于批处理的方法效率更高:不仅在单个事务中执行数据库操作时速度更快,而且向内容提供者发送一批命令可节省大量时间,以便在进程和内容提供者运行的过程。

使用批处理操作的另一面是大批量数据库可能会长时间锁定数据库,从而阻止其他应用程序访问数据并可能导致ANR(“应用程序未响应”对话框)。

为了避免这种数据库锁定,请确保在批次中插入“屈服点”。 屈服点指示内容提供者,在执行下一个操作之前,它可以提交已经做出的更改,屈服于其他请求,打开另一个事务并继续处理操作。 屈服点不会自动提交事务,但只有在数据库上有另一个请求正在等待时。 通常,同步适配器应在批处理中的每个原始联系人操作序列的开始处插入一个屈服点。 withYieldAllowed(boolean)

Operations

Insert

可以使用传统的insert(Uri, ContentValues)方法插入单个数据行。 多行应始终作为批次插入。

传统插入的一个例子:

 ContentValues values = new ContentValues();
 values.put(Data.RAW_CONTACT_ID, rawContactId);
 values.put(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE);
 values.put(Phone.NUMBER, "1-800-GOOG-411");
 values.put(Phone.TYPE, Phone.TYPE_CUSTOM);
 values.put(Phone.LABEL, "free directory assistance");
 Uri dataUri = getContentResolver().insert(Data.CONTENT_URI, values);
 

使用ContentProviderOperations完成相同的操作:

 ArrayList<ContentProviderOperation> ops =
          new ArrayList<ContentProviderOperation>();

 ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
          .withValue(Data.RAW_CONTACT_ID, rawContactId)
          .withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE)
          .withValue(Phone.NUMBER, "1-800-GOOG-411")
          .withValue(Phone.TYPE, Phone.TYPE_CUSTOM)
          .withValue(Phone.LABEL, "free directory assistance")
          .build());
 getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
 

Update

就像插入一样,更新可以逐步完成或作为批处理完成,批处理模式是首选方法:

 ArrayList<ContentProviderOperation> ops =
          new ArrayList<ContentProviderOperation>();

 ops.add(ContentProviderOperation.newUpdate(Data.CONTENT_URI)
          .withSelection(Data._ID + "=?", new String[]{String.valueOf(dataId)})
          .withValue(Email.DATA, "[email protected]")
          .build());
 getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
 

Delete

就像插入和更新一样,可以使用 delete(Uri, String, String[])方法或使用ContentProviderOperation完成删除操作:

 ArrayList<ContentProviderOperation> ops =
          new ArrayList<ContentProviderOperation>();

 ops.add(ContentProviderOperation.newDelete(Data.CONTENT_URI)
          .withSelection(Data._ID + "=?", new String[]{String.valueOf(dataId)})
          .build());
 getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
 

Query

Finding all Data of a given type for a given contact
 Cursor c = getContentResolver().query(Data.CONTENT_URI,
          new String[] {Data._ID, Phone.NUMBER, Phone.TYPE, Phone.LABEL},
          Data.CONTACT_ID + "=?" + " AND "
                  + Data.MIMETYPE + "='" + Phone.CONTENT_ITEM_TYPE + "'",
          new String[] {String.valueOf(contactId)}, null);
 

Finding all Data of a given type for a given raw contact
 Cursor c = getContentResolver().query(Data.CONTENT_URI,
          new String[] {Data._ID, Phone.NUMBER, Phone.TYPE, Phone.LABEL},
          Data.RAW_CONTACT_ID + "=?" + " AND "
                  + Data.MIMETYPE + "='" + Phone.CONTENT_ITEM_TYPE + "'",
          new String[] {String.valueOf(rawContactId)}, null);
 
Finding all Data for a given raw contact
Most sync adapters will want to read all data rows for a raw contact along with the raw contact itself. For that you should use the ContactsContract.RawContactsEntity. See also ContactsContract.RawContacts.

Columns

许多列可通过CONTENT_URI查询获得。 为了获得最佳性能,您应该明确指定一个投影到只需要那些列。

Data
long _ID read-only Row ID. Sync adapter should try to preserve row IDs during updates. In other words, it would be a bad idea to delete and reinsert a data row. A sync adapter should always do an update instead.
String MIMETYPE read/write-once

该行表示的项目的MIME类型。 常见的MIME类型的例子是:

long RAW_CONTACT_ID read/write-once The id of the row in the ContactsContract.RawContacts table that this data belongs to.
int IS_PRIMARY read/write Whether this is the primary entry of its kind for the raw contact it belongs to. "1" if true, "0" if false.
int IS_SUPER_PRIMARY read/write Whether this is the primary entry of its kind for the aggregate contact it belongs to. Any data record that is "super primary" must also be "primary". For example, the super-primary entry may be interpreted as the default contact value of its kind (for example, the default phone number to use for the contact).
int DATA_VERSION read-only The version of this data record. Whenever the data row changes the version goes up. This value is monotonically increasing.
Any type DATA1
DATA2
DATA3
DATA4
DATA5
DATA6
DATA7
DATA8
DATA9
DATA10
DATA11
DATA12
DATA13
DATA14
DATA15
read/write

通用数据列。 每列的含义由MIMETYPE决定。 按照惯例, DATA15用于存储BLOB(二进制数据)。

不应使用未明确定义给定MIMETYPE含义的数据列。 不保证任何同步适配器将保留它们。 同步适配器本身不应使用此类列,而应使用SYNC1 - SYNC4

Any type SYNC1
SYNC2
SYNC3
SYNC4
read/write Generic columns for use by sync adapters. For example, a Photo row may store the image URL in SYNC1, a status (not loaded, loading, loaded, error) in SYNC2, server-side version number in SYNC3 and error code in SYNC4.

最近一次关联状态更新中的某些列也可以通过隐式连接获得。

Join with ContactsContract.StatusUpdates
int PRESENCE read-only IM presence status linked to this data row. Compare with CONTACT_PRESENCE, which contains the contact's presence across all IM rows. See ContactsContract.StatusUpdates for individual status definitions. The provider may choose not to store this value in persistent storage. The expectation is that presence status will be updated on a regular basis.
String STATUS read-only Latest status update linked with this data row.
long STATUS_TIMESTAMP read-only The absolute time in milliseconds when the latest status was inserted/updated for this data row.
String STATUS_RES_PACKAGE read-only The package containing resources for this status: label and icon.
long STATUS_LABEL read-only The resource ID of the label describing the source of status update linked to this data row. This resource is scoped by the STATUS_RES_PACKAGE.
long STATUS_ICON read-only The resource ID of the icon for the source of the status update linked to this data row. This resource is scoped by the STATUS_RES_PACKAGE.

来自关联的原始联系人的某些列也可以通过隐式联接来使用。 在这种情况下,其他列被排除为不感兴趣。

Join with ContactsContract.RawContacts
long CONTACT_ID read-only The id of the row in the Contacts table that this data belongs to.
int AGGREGATION_MODE read-only See ContactsContract.RawContacts.
int DELETED read-only See ContactsContract.RawContacts.

相关联的聚合联系人表ContactsContract.Contacts的ID列可通过对ContactsContract.RawContacts表的隐式ContactsContract.Contacts来获得,参见上文。 通过隐式连接,此表中剩余的列也可用。 这有助于通过单个数据元素的值进行查找,例如电子邮件地址。

Join with ContactsContract.Contacts
String LOOKUP_KEY read-only See ContactsContract.Contacts
String DISPLAY_NAME read-only See ContactsContract.Contacts
long PHOTO_ID read-only See ContactsContract.Contacts.
int IN_VISIBLE_GROUP read-only See ContactsContract.Contacts.
int HAS_PHONE_NUMBER read-only See ContactsContract.Contacts.
int TIMES_CONTACTED read-only See ContactsContract.Contacts.
long LAST_TIME_CONTACTED read-only See ContactsContract.Contacts.
int STARRED read-only See ContactsContract.Contacts.
String CUSTOM_RINGTONE read-only See ContactsContract.Contacts.
int SEND_TO_VOICEMAIL read-only See ContactsContract.Contacts.
int CONTACT_PRESENCE read-only See ContactsContract.Contacts.
String CONTACT_STATUS read-only See ContactsContract.Contacts.
long CONTACT_STATUS_TIMESTAMP read-only See ContactsContract.Contacts.
String CONTACT_STATUS_RES_PACKAGE read-only See ContactsContract.Contacts.
long CONTACT_STATUS_LABEL read-only See ContactsContract.Contacts.
long CONTACT_STATUS_ICON read-only See ContactsContract.Contacts.

Summary

Constants

String CONTENT_TYPE

CONTENT_URI的MIME类型结果。

String EXTRA_ADDRESS_BOOK_INDEX

将这个查询参数添加到一个URI以获取由地址簿索引分组的行计数作为游标额外。

String EXTRA_ADDRESS_BOOK_INDEX_COUNTS

相应组的组计数数组。

String EXTRA_ADDRESS_BOOK_INDEX_TITLES

地址簿索引标题数组,按照与游标中的数据相同的顺序返回。

String VISIBLE_CONTACTS_ONLY

一个布尔参数为 CONTENT_URI

Inherited constants

From interface android.provider.BaseColumns
From interface android.provider.ContactsContract.DataColumns
From interface android.provider.ContactsContract.StatusColumns
From interface android.provider.ContactsContract.RawContactsColumns
From interface android.provider.ContactsContract.ContactsColumns
From interface android.provider.ContactsContract.ContactNameColumns
From interface android.provider.ContactsContract.ContactOptionsColumns
From interface android.provider.ContactsContract.ContactStatusColumns
From interface android.provider.ContactsContract.DataUsageStatColumns

Fields

public static final Uri CONTENT_URI

这个表的内容://样式URI,它请求一个符合选择标准的数据行目录。

Public methods

static Uri getContactLookupUri(ContentResolver resolver, Uri dataUri)

为给定的 ContactsContract.Data条目的父项 ContactsContract.Contacts条目创建 CONTENT_LOOKUP_URI样式 Uri

Inherited methods

From class java.lang.Object

Constants

CONTENT_TYPE

Added in API level 5
String CONTENT_TYPE

CONTENT_URI的MIME类型结果。

常量值:“vnd.android.cursor.dir / data”

EXTRA_ADDRESS_BOOK_INDEX

Added in API level 21
String EXTRA_ADDRESS_BOOK_INDEX

将这个查询参数添加到一个URI以获取由地址簿索引分组的行计数作为游标额外。 对于大多数语言来说,它是排序键的第一个字母。 该参数不影响游标的主要内容。

 Example:

 import android.provider.ContactsContract.Contacts;

 Uri uri = Contacts.CONTENT_URI.buildUpon()
          .appendQueryParameter(Contacts.EXTRA_ADDRESS_BOOK_INDEX, "true")
          .build();
 Cursor cursor = getContentResolver().query(uri,
          new String[] {Contacts.DISPLAY_NAME},
          null, null, null);
 Bundle bundle = cursor.getExtras();
 if (bundle.containsKey(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES) &&
         bundle.containsKey(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS)) {
     String sections[] =
             bundle.getStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES);
     int counts[] = bundle.getIntArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS);
 }
 

常量值:“android.provider.extra.ADDRESS_BOOK_INDEX”

EXTRA_ADDRESS_BOOK_INDEX_COUNTS

Added in API level 21
String EXTRA_ADDRESS_BOOK_INDEX_COUNTS

相应组的组计数数组。 包含与EXTRA_ADDRESS_BOOK_INDEX_TITLES数组相同数量的元素。

TYPE:int []

常量值:“android.provider.extra.ADDRESS_BOOK_INDEX_COUNTS”

EXTRA_ADDRESS_BOOK_INDEX_TITLES

Added in API level 21
String EXTRA_ADDRESS_BOOK_INDEX_TITLES

地址簿索引标题数组,按照与游标中的数据相同的顺序返回。

TYPE:String []

常量值:“android.provider.extra.ADDRESS_BOOK_INDEX_TITLES”

VISIBLE_CONTACTS_ONLY

Added in API level 18
String VISIBLE_CONTACTS_ONLY

一个布尔参数为CONTENT_URI 这指定是否应过滤返回的数据项以显示仅属于可见联系人的数据项。

常量值:“visible_contacts_only”

Fields

CONTENT_URI

Added in API level 5
Uri CONTENT_URI

这个表的内容://样式URI,它请求一个符合选择标准的数据行目录。

Public methods

getContactLookupUri

Added in API level 5
Uri getContactLookupUri (ContentResolver resolver, 
                Uri dataUri)

为给定的 ContactsContract.Data条目的父项 ContactsContract.Contacts条目创建 CONTENT_LOOKUP_URI样式 Uri

返回query(Uri, String[], String, String[], String)dataUri提供的第一个条目中的联系人的Uri。 如果查询返回null或空结果,则默默返回null。

Parameters
resolver ContentResolver
dataUri Uri
Returns
Uri

Hooray!