/* * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.provider; import com.android.internal.R; import android.content.ContentResolver; import android.content.ContentUris; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.net.Uri; import android.os.Build; import android.text.TextUtils; import android.util.Log; import android.widget.ImageView; import java.io.ByteArrayInputStream; import java.io.InputStream; /** * The Contacts provider stores all information about contacts. * * @deprecated The APIs have been superseded by {@link ContactsContract}. The newer APIs allow * access multiple accounts and support aggregation of similar contacts. These APIs continue to * work but will only return data for the first Google account created, which matches the original * behavior. */ @Deprecated public class Contacts { private static final String TAG = "Contacts"; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String AUTHORITY = "contacts"; /** * The content:// style URL for this provider * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY); /** * Signifies an email address row that is stored in the ContactMethods table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int KIND_EMAIL = 1; /** * Signifies a postal address row that is stored in the ContactMethods table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int KIND_POSTAL = 2; /** * Signifies an IM address row that is stored in the ContactMethods table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int KIND_IM = 3; /** * Signifies an Organization row that is stored in the Organizations table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int KIND_ORGANIZATION = 4; /** * Signifies an Phone row that is stored in the Phones table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int KIND_PHONE = 5; /** * no public constructor since this is a utility class */ private Contacts() {} /** * Columns from the Settings table that other columns join into themselves. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface SettingsColumns { /** * The _SYNC_ACCOUNT to which this setting corresponds. This may be null. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String _SYNC_ACCOUNT = "_sync_account"; /** * The _SYNC_ACCOUNT_TYPE to which this setting corresponds. This may be null. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String _SYNC_ACCOUNT_TYPE = "_sync_account_type"; /** * The key of this setting. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String KEY = "key"; /** * The value of this setting. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String VALUE = "value"; } /** * The settings over all of the people * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Settings implements BaseColumns, SettingsColumns { /** * no public constructor since this is a utility class */ private Settings() {} /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/settings"); /** * The directory twig for this sub-table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_DIRECTORY = "settings"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "key ASC"; /** * A setting that is used to indicate if we should sync down all groups for the * specified account. For this setting the _SYNC_ACCOUNT column must be set. * If this isn't set then we will only sync the groups whose SHOULD_SYNC column * is set to true. *

* This is a boolean setting. It is true if it is set and it is anything other than the * emptry string or "0". * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SYNC_EVERYTHING = "syncEverything"; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static String getSetting(ContentResolver cr, String account, String key) { // For now we only support a single account and the UI doesn't know what // the account name is, so we're using a global setting for SYNC_EVERYTHING. // Some day when we add multiple accounts to the UI this should honor the account // that was asked for. String selectString; String[] selectArgs; if (false) { selectString = (account == null) ? "_sync_account is null AND key=?" : "_sync_account=? AND key=?"; // : "_sync_account=? AND _sync_account_type=? AND key=?"; selectArgs = (account == null) ? new String[]{key} : new String[]{account, key}; } else { selectString = "key=?"; selectArgs = new String[] {key}; } Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE}, selectString, selectArgs, null); try { if (!cursor.moveToNext()) return null; return cursor.getString(0); } finally { cursor.close(); } } /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static void setSetting(ContentResolver cr, String account, String key, String value) { ContentValues values = new ContentValues(); // For now we only support a single account and the UI doesn't know what // the account name is, so we're using a global setting for SYNC_EVERYTHING. // Some day when we add multiple accounts to the UI this should honor the account // that was asked for. //values.put(_SYNC_ACCOUNT, account.mName); //values.put(_SYNC_ACCOUNT_TYPE, account.mType); values.put(KEY, key); values.put(VALUE, value); cr.update(Settings.CONTENT_URI, values, null, null); } } /** * Columns from the People table that other tables join into themselves. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface PeopleColumns { /** * The person's name. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NAME = "name"; /** * Phonetic equivalent of the person's name, in a locale-dependent * character set (e.g. hiragana for Japanese). * Used for pronunciation and/or collation in some languages. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PHONETIC_NAME = "phonetic_name"; /** * The display name. If name is not null name, else if number is not null number, * else if email is not null email. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DISPLAY_NAME = "display_name"; /** * The field for sorting list phonetically. The content of this field * may not be human readable but phonetically sortable. *

Type: TEXT

* @hide Used only in Contacts application for now. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SORT_STRING = "sort_string"; /** * Notes about the person. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NOTES = "notes"; /** * The number of times a person has been contacted *

Type: INTEGER

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TIMES_CONTACTED = "times_contacted"; /** * The last time a person was contacted. *

Type: INTEGER

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LAST_TIME_CONTACTED = "last_time_contacted"; /** * A custom ringtone associated with a person. Not always present. *

Type: TEXT (URI to the ringtone)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CUSTOM_RINGTONE = "custom_ringtone"; /** * Whether the person should always be sent to voicemail. Not always * present. *

Type: INTEGER (0 for false, 1 for true)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SEND_TO_VOICEMAIL = "send_to_voicemail"; /** * Is the contact starred? *

Type: INTEGER (boolean)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String STARRED = "starred"; /** * The server version of the photo *

Type: TEXT (the version number portion of the photo URI)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PHOTO_VERSION = "photo_version"; } /** * This table contains people. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class People implements BaseColumns, SyncConstValue, PeopleColumns, PhonesColumns, PresenceColumns { /** * no public constructor since this is a utility class * @deprecated see {@link android.provider.ContactsContract} */ private People() {} /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/people"); /** * The content:// style URL for filtering people by name. The filter * argument should be passed as an additional path segment after this URI. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_FILTER_URI = Uri.parse("content://contacts/people/filter"); /** * The content:// style URL for the table that holds the deleted * contacts. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri DELETED_CONTENT_URI = Uri.parse("content://contacts/deleted_people"); /** * The content:// style URL for filtering people that have a specific * E-mail or IM address. The filter argument should be passed as an * additional path segment after this URI. This matches any people with * at least one E-mail or IM {@link ContactMethods} that match the * filter. * * Not exposed because we expect significant changes in the contacts * schema and do not want to have to support this. * @hide * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri WITH_EMAIL_OR_IM_FILTER_URI = Uri.parse("content://contacts/people/with_email_or_im_filter"); /** * The MIME type of {@link #CONTENT_URI} providing a directory of * people. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/person"; /** * The MIME type of a {@link #CONTENT_URI} subdirectory of a single * person. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/person"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = People.NAME + " ASC"; /** * The ID of the persons preferred phone number. *

Type: INTEGER (foreign key to phones table on the _ID field)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PRIMARY_PHONE_ID = "primary_phone"; /** * The ID of the persons preferred email. *

Type: INTEGER (foreign key to contact_methods table on the * _ID field)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PRIMARY_EMAIL_ID = "primary_email"; /** * The ID of the persons preferred organization. *

Type: INTEGER (foreign key to organizations table on the * _ID field)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PRIMARY_ORGANIZATION_ID = "primary_organization"; /** * Mark a person as having been contacted. * * @param resolver the ContentResolver to use * @param personId the person who was contacted * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static void markAsContacted(ContentResolver resolver, long personId) { Uri uri = ContentUris.withAppendedId(CONTENT_URI, personId); uri = Uri.withAppendedPath(uri, "update_contact_time"); ContentValues values = new ContentValues(); // There is a trigger in place that will update TIMES_CONTACTED when // LAST_TIME_CONTACTED is modified. values.put(LAST_TIME_CONTACTED, System.currentTimeMillis()); resolver.update(uri, values, null, null); } /** * @hide Used in vCard parser code. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static long tryGetMyContactsGroupId(ContentResolver resolver) { Cursor groupsCursor = resolver.query(Groups.CONTENT_URI, GROUPS_PROJECTION, Groups.SYSTEM_ID + "='" + Groups.GROUP_MY_CONTACTS + "'", null, null); if (groupsCursor != null) { try { if (groupsCursor.moveToFirst()) { return groupsCursor.getLong(0); } } finally { groupsCursor.close(); } } return 0; } /** * Adds a person to the My Contacts group. * * @param resolver the resolver to use * @param personId the person to add to the group * @return the URI of the group membership row * @throws IllegalStateException if the My Contacts group can't be found * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static Uri addToMyContactsGroup(ContentResolver resolver, long personId) { long groupId = tryGetMyContactsGroupId(resolver); if (groupId == 0) { throw new IllegalStateException("Failed to find the My Contacts group"); } return addToGroup(resolver, personId, groupId); } /** * Adds a person to a group referred to by name. * * @param resolver the resolver to use * @param personId the person to add to the group * @param groupName the name of the group to add the contact to * @return the URI of the group membership row * @throws IllegalStateException if the group can't be found * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static Uri addToGroup(ContentResolver resolver, long personId, String groupName) { long groupId = 0; Cursor groupsCursor = resolver.query(Groups.CONTENT_URI, GROUPS_PROJECTION, Groups.NAME + "=?", new String[] { groupName }, null); if (groupsCursor != null) { try { if (groupsCursor.moveToFirst()) { groupId = groupsCursor.getLong(0); } } finally { groupsCursor.close(); } } if (groupId == 0) { throw new IllegalStateException("Failed to find the My Contacts group"); } return addToGroup(resolver, personId, groupId); } /** * Adds a person to a group. * * @param resolver the resolver to use * @param personId the person to add to the group * @param groupId the group to add the person to * @return the URI of the group membership row * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static Uri addToGroup(ContentResolver resolver, long personId, long groupId) { ContentValues values = new ContentValues(); values.put(GroupMembership.PERSON_ID, personId); values.put(GroupMembership.GROUP_ID, groupId); return resolver.insert(GroupMembership.CONTENT_URI, values); } private static final String[] GROUPS_PROJECTION = new String[] { Groups._ID, }; /** * Creates a new contacts and adds it to the "My Contacts" group. * * @param resolver the ContentResolver to use * @param values the values to use when creating the contact * @return the URI of the contact, or null if the operation fails * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static Uri createPersonInMyContactsGroup(ContentResolver resolver, ContentValues values) { Uri contactUri = resolver.insert(People.CONTENT_URI, values); if (contactUri == null) { Log.e(TAG, "Failed to create the contact"); return null; } if (addToMyContactsGroup(resolver, ContentUris.parseId(contactUri)) == null) { resolver.delete(contactUri, null, null); return null; } return contactUri; } /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static Cursor queryGroups(ContentResolver resolver, long person) { return resolver.query(GroupMembership.CONTENT_URI, null, "person=?", new String[]{String.valueOf(person)}, Groups.DEFAULT_SORT_ORDER); } /** * Set the photo for this person. data may be null * @param cr the ContentResolver to use * @param person the Uri of the person whose photo is to be updated * @param data the byte[] that represents the photo * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static void setPhotoData(ContentResolver cr, Uri person, byte[] data) { Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY); ContentValues values = new ContentValues(); values.put(Photos.DATA, data); cr.update(photoUri, values, null, null); } /** * Opens an InputStream for the person's photo and returns the photo as a Bitmap. * If the person's photo isn't present returns the placeholderImageResource instead. * @param person the person whose photo should be used * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static InputStream openContactPhotoInputStream(ContentResolver cr, Uri person) { Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY); Cursor cursor = cr.query(photoUri, new String[]{Photos.DATA}, null, null, null); try { if (cursor == null || !cursor.moveToNext()) { return null; } byte[] data = cursor.getBlob(0); if (data == null) { return null; } return new ByteArrayInputStream(data); } finally { if (cursor != null) cursor.close(); } } /** * Opens an InputStream for the person's photo and returns the photo as a Bitmap. * If the person's photo isn't present returns the placeholderImageResource instead. * @param context the Context * @param person the person whose photo should be used * @param placeholderImageResource the image resource to use if the person doesn't * have a photo * @param options the decoding options, can be set to null * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static Bitmap loadContactPhoto(Context context, Uri person, int placeholderImageResource, BitmapFactory.Options options) { if (person == null) { return loadPlaceholderPhoto(placeholderImageResource, context, options); } InputStream stream = openContactPhotoInputStream(context.getContentResolver(), person); Bitmap bm = stream != null ? BitmapFactory.decodeStream(stream, null, options) : null; if (bm == null) { bm = loadPlaceholderPhoto(placeholderImageResource, context, options); } return bm; } private static Bitmap loadPlaceholderPhoto(int placeholderImageResource, Context context, BitmapFactory.Options options) { if (placeholderImageResource == 0) { return null; } return BitmapFactory.decodeResource(context.getResources(), placeholderImageResource, options); } /** * A sub directory of a single person that contains all of their Phones. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Phones implements BaseColumns, PhonesColumns, PeopleColumns { /** * no public constructor since this is a utility class */ private Phones() {} /** * The directory twig for this sub-table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_DIRECTORY = "phones"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "number ASC"; } /** * A subdirectory of a single person that contains all of their * ContactMethods. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class ContactMethods implements BaseColumns, ContactMethodsColumns, PeopleColumns { /** * no public constructor since this is a utility class */ private ContactMethods() {} /** * The directory twig for this sub-table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_DIRECTORY = "contact_methods"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "data ASC"; } /** * The extensions for a person * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static class Extensions implements BaseColumns, ExtensionsColumns { /** * no public constructor since this is a utility class * @deprecated see {@link android.provider.ContactsContract} */ private Extensions() {} /** * The directory twig for this sub-table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_DIRECTORY = "extensions"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "name ASC"; /** * The ID of the person this phone number is assigned to. *

Type: INTEGER (long)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; } } /** * Columns from the groups table. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface GroupsColumns { /** * The group name. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NAME = "name"; /** * Notes about the group. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NOTES = "notes"; /** * Whether this group should be synced if the SYNC_EVERYTHING settings is false * for this group's account. *

Type: INTEGER (boolean)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SHOULD_SYNC = "should_sync"; /** * The ID of this group if it is a System Group, null otherwise. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SYSTEM_ID = "system_id"; } /** * This table contains the groups for an account. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Groups implements BaseColumns, SyncConstValue, GroupsColumns { /** * no public constructor since this is a utility class */ private Groups() {} /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/groups"); /** * The content:// style URL for the table that holds the deleted * groups. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri DELETED_CONTENT_URI = Uri.parse("content://contacts/deleted_groups"); /** * The MIME type of {@link #CONTENT_URI} providing a directory of * groups. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contactsgroup"; /** * The MIME type of a {@link #CONTENT_URI} subdirectory of a single * group. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/contactsgroup"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = NAME + " ASC"; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String GROUP_ANDROID_STARRED = "Starred in Android"; /** * The "My Contacts" system group. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String GROUP_MY_CONTACTS = "Contacts"; } /** * Columns from the Phones table that other columns join into themselves. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface PhonesColumns { /** * The type of the the phone number. *

Type: INTEGER (one of the constants below)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TYPE = "type"; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_CUSTOM = 0; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_HOME = 1; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_MOBILE = 2; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_WORK = 3; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_FAX_WORK = 4; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_FAX_HOME = 5; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_PAGER = 6; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_OTHER = 7; /** * The user provided label for the phone number, only used if TYPE is TYPE_CUSTOM. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LABEL = "label"; /** * The phone number as the user entered it. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NUMBER = "number"; /** * The normalized phone number *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NUMBER_KEY = "number_key"; /** * Whether this is the primary phone number *

Type: INTEGER (if set, non-0 means true)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String ISPRIMARY = "isprimary"; } /** * This table stores phone numbers and a reference to the person that the * contact method belongs to. Phone numbers are stored separately from * other contact methods to make caller ID lookup more efficient. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Phones implements BaseColumns, PhonesColumns, PeopleColumns { /** * no public constructor since this is a utility class */ private Phones() {} /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final CharSequence getDisplayLabel(Context context, int type, CharSequence label, CharSequence[] labelArray) { CharSequence display = ""; if (type != People.Phones.TYPE_CUSTOM) { CharSequence[] labels = labelArray != null? labelArray : context.getResources().getTextArray( com.android.internal.R.array.phoneTypes); try { display = labels[type - 1]; } catch (ArrayIndexOutOfBoundsException e) { display = labels[People.Phones.TYPE_HOME - 1]; } } else { if (!TextUtils.isEmpty(label)) { display = label; } } return display; } /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final CharSequence getDisplayLabel(Context context, int type, CharSequence label) { return getDisplayLabel(context, type, label, null); } /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/phones"); /** * The content:// style URL for filtering phone numbers * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_FILTER_URL = Uri.parse("content://contacts/phones/filter"); /** * The MIME type of {@link #CONTENT_URI} providing a directory of * phones. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/phone"; /** * The MIME type of a {@link #CONTENT_URI} subdirectory of a single * phone. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/phone"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "name ASC"; /** * The ID of the person this phone number is assigned to. *

Type: INTEGER (long)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; } /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class GroupMembership implements BaseColumns, GroupsColumns { /** * no public constructor since this is a utility class */ private GroupMembership() {} /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/groupmembership"); /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri RAW_CONTENT_URI = Uri.parse("content://contacts/groupmembershipraw"); /** * The directory twig for this sub-table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_DIRECTORY = "groupmembership"; /** * The MIME type of {@link #CONTENT_URI} providing a directory of all * person groups. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contactsgroupmembership"; /** * The MIME type of a {@link #CONTENT_URI} subdirectory of a single * person group. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/contactsgroupmembership"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "group_id ASC"; /** * The row id of the accounts group. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String GROUP_ID = "group_id"; /** * The sync id of the group. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String GROUP_SYNC_ID = "group_sync_id"; /** * The account of the group. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String GROUP_SYNC_ACCOUNT = "group_sync_account"; /** * The account type of the group. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String GROUP_SYNC_ACCOUNT_TYPE = "group_sync_account_type"; /** * The row id of the person. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; } /** * Columns from the ContactMethods table that other tables join into * themseleves. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface ContactMethodsColumns { /** * The kind of the the contact method. For example, email address, * postal address, etc. *

Type: INTEGER (one of the values below)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String KIND = "kind"; /** * The type of the contact method, must be one of the types below. *

Type: INTEGER (one of the values below)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TYPE = "type"; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_CUSTOM = 0; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_HOME = 1; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_WORK = 2; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_OTHER = 3; /** * @hide This is temporal. TYPE_MOBILE should be added to TYPE in the future. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int MOBILE_EMAIL_TYPE_INDEX = 2; /** * @hide This is temporal. TYPE_MOBILE should be added to TYPE in the future. * This is not "mobile" but "CELL" since vCard uses it for identifying mobile phone. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String MOBILE_EMAIL_TYPE_NAME = "_AUTO_CELL"; /** * The user defined label for the the contact method. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LABEL = "label"; /** * The data for the contact method. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DATA = "data"; /** * Auxiliary data for the contact method. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String AUX_DATA = "aux_data"; /** * Whether this is the primary organization *

Type: INTEGER (if set, non-0 means true)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String ISPRIMARY = "isprimary"; } /** * This table stores all non-phone contact methods and a reference to the * person that the contact method belongs to. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class ContactMethods implements BaseColumns, ContactMethodsColumns, PeopleColumns { /** * The column with latitude data for postal locations *

Type: REAL

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String POSTAL_LOCATION_LATITUDE = DATA; /** * The column with longitude data for postal locations *

Type: REAL

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String POSTAL_LOCATION_LONGITUDE = AUX_DATA; /** * The predefined IM protocol types. The protocol can either be non-present, one * of these types, or a free-form string. These cases are encoded in the AUX_DATA * column as: * - null * - pre: * - custom: * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_AIM = 0; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_MSN = 1; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_YAHOO = 2; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_SKYPE = 3; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_QQ = 4; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_GOOGLE_TALK = 5; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_ICQ = 6; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int PROTOCOL_JABBER = 7; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static String encodePredefinedImProtocol(int protocol) { return "pre:" + protocol; } /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static String encodeCustomImProtocol(String protocolString) { return "custom:" + protocolString; } /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static Object decodeImProtocol(String encodedString) { if (encodedString == null) { return null; } if (encodedString.startsWith("pre:")) { return Integer.parseInt(encodedString.substring(4)); } if (encodedString.startsWith("custom:")) { return encodedString.substring(7); } throw new IllegalArgumentException( "the value is not a valid encoded protocol, " + encodedString); } /** * TODO find a place to put the canonical version of these. */ interface ProviderNames { // //NOTE: update Contacts.java with new providers when they're added. // String YAHOO = "Yahoo"; String GTALK = "GTalk"; String MSN = "MSN"; String ICQ = "ICQ"; String AIM = "AIM"; String XMPP = "XMPP"; String JABBER = "JABBER"; String SKYPE = "SKYPE"; String QQ = "QQ"; } /** * This looks up the provider name defined in * from the predefined IM protocol id. * This is used for interacting with the IM application. * * @param protocol the protocol ID * @return the provider name the IM app uses for the given protocol, or null if no * provider is defined for the given protocol * @deprecated see {@link android.provider.ContactsContract} * @hide */ @Deprecated public static String lookupProviderNameFromId(int protocol) { switch (protocol) { case PROTOCOL_GOOGLE_TALK: return ProviderNames.GTALK; case PROTOCOL_AIM: return ProviderNames.AIM; case PROTOCOL_MSN: return ProviderNames.MSN; case PROTOCOL_YAHOO: return ProviderNames.YAHOO; case PROTOCOL_ICQ: return ProviderNames.ICQ; case PROTOCOL_JABBER: return ProviderNames.JABBER; case PROTOCOL_SKYPE: return ProviderNames.SKYPE; case PROTOCOL_QQ: return ProviderNames.QQ; } return null; } /** * no public constructor since this is a utility class */ private ContactMethods() {} /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final CharSequence getDisplayLabel(Context context, int kind, int type, CharSequence label) { CharSequence display = ""; switch (kind) { case KIND_EMAIL: { if (type != People.ContactMethods.TYPE_CUSTOM) { CharSequence[] labels = context.getResources().getTextArray( com.android.internal.R.array.emailAddressTypes); try { display = labels[type - 1]; } catch (ArrayIndexOutOfBoundsException e) { display = labels[ContactMethods.TYPE_HOME - 1]; } } else { if (!TextUtils.isEmpty(label)) { display = label; } } break; } case KIND_POSTAL: { if (type != People.ContactMethods.TYPE_CUSTOM) { CharSequence[] labels = context.getResources().getTextArray( com.android.internal.R.array.postalAddressTypes); try { display = labels[type - 1]; } catch (ArrayIndexOutOfBoundsException e) { display = labels[ContactMethods.TYPE_HOME - 1]; } } else { if (!TextUtils.isEmpty(label)) { display = label; } } break; } default: display = context.getString(R.string.untitled); } return display; } /** * Add a longitude and latitude location to a postal address. * * @param context the context to use when updating the database * @param postalId the address to update * @param latitude the latitude for the address * @param longitude the longitude for the address * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public void addPostalLocation(Context context, long postalId, double latitude, double longitude) { final ContentResolver resolver = context.getContentResolver(); // Insert the location ContentValues values = new ContentValues(2); values.put(POSTAL_LOCATION_LATITUDE, latitude); values.put(POSTAL_LOCATION_LONGITUDE, longitude); Uri loc = resolver.insert(CONTENT_URI, values); long locId = ContentUris.parseId(loc); // Update the postal address values.clear(); values.put(AUX_DATA, locId); resolver.update(ContentUris.withAppendedId(CONTENT_URI, postalId), values, null, null); } /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/contact_methods"); /** * The content:// style URL for sub-directory of e-mail addresses. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_EMAIL_URI = Uri.parse("content://contacts/contact_methods/email"); /** * The MIME type of {@link #CONTENT_URI} providing a directory of * @deprecated see {@link android.provider.ContactsContract} * phones. */ @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contact-methods"; /** * The MIME type of a {@link #CONTENT_EMAIL_URI} sub-directory of * multiple {@link Contacts#KIND_EMAIL} entries. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_EMAIL_TYPE = "vnd.android.cursor.dir/email"; /** * The MIME type of a {@link #CONTENT_EMAIL_URI} sub-directory of * multiple {@link Contacts#KIND_POSTAL} entries. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_POSTAL_TYPE = "vnd.android.cursor.dir/postal-address"; /** * The MIME type of a {@link #CONTENT_URI} sub-directory of a single * {@link Contacts#KIND_EMAIL} entry. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_EMAIL_ITEM_TYPE = "vnd.android.cursor.item/email"; /** * The MIME type of a {@link #CONTENT_URI} sub-directory of a single * {@link Contacts#KIND_POSTAL} entry. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_POSTAL_ITEM_TYPE = "vnd.android.cursor.item/postal-address"; /** * The MIME type of a {@link #CONTENT_URI} sub-directory of a single * {@link Contacts#KIND_IM} entry. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_IM_ITEM_TYPE = "vnd.android.cursor.item/jabber-im"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "name ASC"; /** * The ID of the person this contact method is assigned to. *

Type: INTEGER (long)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; } /** * The IM presence columns with some contacts specific columns mixed in. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface PresenceColumns { /** * The priority, an integer, used by XMPP presence *

Type: INTEGER

*/ String PRIORITY = "priority"; /** * The server defined status. *

Type: INTEGER (one of the values below)

*/ String PRESENCE_STATUS = ContactsContract.StatusUpdates.PRESENCE; /** * Presence Status definition */ int OFFLINE = ContactsContract.StatusUpdates.OFFLINE; int INVISIBLE = ContactsContract.StatusUpdates.INVISIBLE; int AWAY = ContactsContract.StatusUpdates.AWAY; int IDLE = ContactsContract.StatusUpdates.IDLE; int DO_NOT_DISTURB = ContactsContract.StatusUpdates.DO_NOT_DISTURB; int AVAILABLE = ContactsContract.StatusUpdates.AVAILABLE; /** * The user defined status line. *

Type: TEXT

*/ String PRESENCE_CUSTOM_STATUS = ContactsContract.StatusUpdates.STATUS; /** * The IM service the presence is coming from. Formatted using either * {@link Contacts.ContactMethods#encodePredefinedImProtocol} or * {@link Contacts.ContactMethods#encodeCustomImProtocol}. *

Type: STRING

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String IM_PROTOCOL = "im_protocol"; /** * The IM handle the presence item is for. The handle is scoped to * the {@link #IM_PROTOCOL}. *

Type: STRING

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String IM_HANDLE = "im_handle"; /** * The IM account for the local user that the presence data came from. *

Type: STRING

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String IM_ACCOUNT = "im_account"; } /** * Contains presence information about contacts. * @hide * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Presence implements BaseColumns, PresenceColumns, PeopleColumns { /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/presence"); /** * The ID of the person this presence item is assigned to. *

Type: INTEGER (long)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; /** * Gets the resource ID for the proper presence icon. * * @param status the status to get the icon for * @return the resource ID for the proper presence icon * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int getPresenceIconResourceId(int status) { switch (status) { case Contacts.People.AVAILABLE: return com.android.internal.R.drawable.presence_online; case Contacts.People.IDLE: case Contacts.People.AWAY: return com.android.internal.R.drawable.presence_away; case Contacts.People.DO_NOT_DISTURB: return com.android.internal.R.drawable.presence_busy; case Contacts.People.INVISIBLE: return com.android.internal.R.drawable.presence_invisible; case Contacts.People.OFFLINE: default: return com.android.internal.R.drawable.presence_offline; } } /** * Sets a presence icon to the proper graphic * * @param icon the icon to to set * @param serverStatus that status * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final void setPresenceIcon(ImageView icon, int serverStatus) { icon.setImageResource(getPresenceIconResourceId(serverStatus)); } } /** * Columns from the Organizations table that other columns join into themselves. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface OrganizationColumns { /** * The type of the organizations. *

Type: INTEGER (one of the constants below)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TYPE = "type"; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_CUSTOM = 0; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_WORK = 1; /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final int TYPE_OTHER = 2; /** * The user provided label, only used if TYPE is TYPE_CUSTOM. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LABEL = "label"; /** * The name of the company for this organization. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String COMPANY = "company"; /** * The title within this organization. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TITLE = "title"; /** * The person this organization is tied to. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; /** * Whether this is the primary organization *

Type: INTEGER (if set, non-0 means true)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String ISPRIMARY = "isprimary"; } /** * A sub directory of a single person that contains all of their Phones. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Organizations implements BaseColumns, OrganizationColumns { /** * no public constructor since this is a utility class */ private Organizations() {} /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final CharSequence getDisplayLabel(Context context, int type, CharSequence label) { CharSequence display = ""; if (type != TYPE_CUSTOM) { CharSequence[] labels = context.getResources().getTextArray( com.android.internal.R.array.organizationTypes); try { display = labels[type - 1]; } catch (ArrayIndexOutOfBoundsException e) { display = labels[Organizations.TYPE_WORK - 1]; } } else { if (!TextUtils.isEmpty(label)) { display = label; } } return display; } /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/organizations"); /** * The directory twig for this sub-table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_DIRECTORY = "organizations"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "company, title, isprimary ASC"; } /** * Columns from the Photos table that other columns join into themselves. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface PhotosColumns { /** * The _SYNC_VERSION of the photo that was last downloaded *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LOCAL_VERSION = "local_version"; /** * The person this photo is associated with. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; /** * non-zero if a download is required and the photo isn't marked as a bad resource. * You must specify this in the columns in order to use it in the where clause. *

Type: INTEGER(boolean)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DOWNLOAD_REQUIRED = "download_required"; /** * non-zero if this photo is known to exist on the server *

Type: INTEGER(boolean)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String EXISTS_ON_SERVER = "exists_on_server"; /** * Contains the description of the upload or download error from * the previous attempt. If null then the previous attempt succeeded. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SYNC_ERROR = "sync_error"; /** * The image data, or null if there is no image. *

Type: BLOB

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DATA = "data"; } /** * The photos over all of the people * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Photos implements BaseColumns, PhotosColumns, SyncConstValue { /** * no public constructor since this is a utility class */ private Photos() {} /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/photos"); /** * The directory twig for this sub-table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_DIRECTORY = "photo"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "person ASC"; } /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public interface ExtensionsColumns { /** * The name of this extension. May not be null. There may be at most one row for each name. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NAME = "name"; /** * The value of this extension. May not be null. *

Type: TEXT

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String VALUE = "value"; } /** * The extensions for a person * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Extensions implements BaseColumns, ExtensionsColumns { /** * no public constructor since this is a utility class */ private Extensions() {} /** * The content:// style URL for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final Uri CONTENT_URI = Uri.parse("content://contacts/extensions"); /** * The MIME type of {@link #CONTENT_URI} providing a directory of * phones. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_TYPE = "vnd.android.cursor.dir/contact_extensions"; /** * The MIME type of a {@link #CONTENT_URI} subdirectory of a single * phone. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/contact_extensions"; /** * The default sort order for this table * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String DEFAULT_SORT_ORDER = "person, name ASC"; /** * The ID of the person this phone number is assigned to. *

Type: INTEGER (long)

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PERSON_ID = "person"; } /** * Contains helper classes used to create or manage {@link android.content.Intent Intents} * that involve contacts. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Intents { /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public Intents() { } /** * This is the intent that is fired when a search suggestion is clicked on. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SEARCH_SUGGESTION_CLICKED = ContactsContract.Intents.SEARCH_SUGGESTION_CLICKED; /** * This is the intent that is fired when a search suggestion for dialing a number * is clicked on. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED = ContactsContract.Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED; /** * This is the intent that is fired when a search suggestion for creating a contact * is clicked on. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED = ContactsContract.Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED; /** * Starts an Activity that lets the user pick a contact to attach an image to. * After picking the contact it launches the image cropper in face detection mode. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String ATTACH_IMAGE = ContactsContract.Intents.ATTACH_IMAGE; /** * Takes as input a data URI with a mailto: or tel: scheme. If a single * contact exists with the given data it will be shown. If no contact * exists, a dialog will ask the user if they want to create a new * contact with the provided details filled in. If multiple contacts * share the data the user will be prompted to pick which contact they * want to view. *

* For mailto: URIs, the scheme specific portion must be a * raw email address, such as one built using * {@link Uri#fromParts(String, String, String)}. *

* For tel: URIs, the scheme specific portion is compared * to existing numbers using the standard caller ID lookup algorithm. * The number must be properly encoded, for example using * {@link Uri#fromParts(String, String, String)}. *

* Any extras from the {@link Insert} class will be passed along to the * create activity if there are no contacts to show. *

* Passing true for the {@link #EXTRA_FORCE_CREATE} extra will skip * prompting the user when the contact doesn't exist. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SHOW_OR_CREATE_CONTACT = ContactsContract.Intents.SHOW_OR_CREATE_CONTACT; /** * Used with {@link #SHOW_OR_CREATE_CONTACT} to force creating a new * contact if no matching contact found. Otherwise, default behavior is * to prompt user with dialog before creating. *

* Type: BOOLEAN * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String EXTRA_FORCE_CREATE = ContactsContract.Intents.EXTRA_FORCE_CREATE; /** * Used with {@link #SHOW_OR_CREATE_CONTACT} to specify an exact * description to be shown when prompting user about creating a new * contact. *

* Type: STRING * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String EXTRA_CREATE_DESCRIPTION = ContactsContract.Intents.EXTRA_CREATE_DESCRIPTION; /** * Optional extra used with {@link #SHOW_OR_CREATE_CONTACT} to specify a * dialog location using screen coordinates. When not specified, the * dialog will be centered. * * @hide pending API council review * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String EXTRA_TARGET_RECT = ContactsContract.Intents.EXTRA_TARGET_RECT; /** * Intents related to the Contacts app UI. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class UI { /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public UI() { } /** * The action for the default contacts list tab. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LIST_DEFAULT = ContactsContract.Intents.UI.LIST_DEFAULT; /** * The action for the contacts list tab. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LIST_GROUP_ACTION = ContactsContract.Intents.UI.LIST_GROUP_ACTION; /** * When in LIST_GROUP_ACTION mode, this is the group to display. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String GROUP_NAME_EXTRA_KEY = ContactsContract.Intents.UI.GROUP_NAME_EXTRA_KEY; /** * The action for the all contacts list tab. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LIST_ALL_CONTACTS_ACTION = ContactsContract.Intents.UI.LIST_ALL_CONTACTS_ACTION; /** * The action for the contacts with phone numbers list tab. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LIST_CONTACTS_WITH_PHONES_ACTION = ContactsContract.Intents.UI.LIST_CONTACTS_WITH_PHONES_ACTION; /** * The action for the starred contacts list tab. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LIST_STARRED_ACTION = ContactsContract.Intents.UI.LIST_STARRED_ACTION; /** * The action for the frequent contacts list tab. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LIST_FREQUENT_ACTION = ContactsContract.Intents.UI.LIST_FREQUENT_ACTION; /** * The action for the "strequent" contacts list tab. It first lists the starred * contacts in alphabetical order and then the frequent contacts in descending * order of the number of times they have been contacted. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String LIST_STREQUENT_ACTION = ContactsContract.Intents.UI.LIST_STREQUENT_ACTION; /** * A key for to be used as an intent extra to set the activity * title to a custom String value. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TITLE_EXTRA_KEY = ContactsContract.Intents.UI.TITLE_EXTRA_KEY; /** * Activity Action: Display a filtered list of contacts *

* Input: Extra field {@link #FILTER_TEXT_EXTRA_KEY} is the text to use for * filtering *

* Output: Nothing. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String FILTER_CONTACTS_ACTION = ContactsContract.Intents.UI.FILTER_CONTACTS_ACTION; /** * Used as an int extra field in {@link #FILTER_CONTACTS_ACTION} * intents to supply the text on which to filter. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String FILTER_TEXT_EXTRA_KEY = ContactsContract.Intents.UI.FILTER_TEXT_EXTRA_KEY; } /** * Convenience class that contains string constants used * to create contact {@link android.content.Intent Intents}. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final class Insert { /** * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public Insert() { } /** The action code to use when adding a contact * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String ACTION = ContactsContract.Intents.Insert.ACTION; /** * If present, forces a bypass of quick insert mode. * @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String FULL_MODE = ContactsContract.Intents.Insert.FULL_MODE; /** * The extra field for the contact name. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NAME = ContactsContract.Intents.Insert.NAME; /** * The extra field for the contact phonetic name. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PHONETIC_NAME = ContactsContract.Intents.Insert.PHONETIC_NAME; /** * The extra field for the contact company. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String COMPANY = ContactsContract.Intents.Insert.COMPANY; /** * The extra field for the contact job title. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String JOB_TITLE = ContactsContract.Intents.Insert.JOB_TITLE; /** * The extra field for the contact notes. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String NOTES = ContactsContract.Intents.Insert.NOTES; /** * The extra field for the contact phone number. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PHONE = ContactsContract.Intents.Insert.PHONE; /** * The extra field for the contact phone number type. *

Type: Either an integer value from {@link android.provider.Contacts.PhonesColumns PhonesColumns}, * or a string specifying a custom label.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PHONE_TYPE = ContactsContract.Intents.Insert.PHONE_TYPE; /** * The extra field for the phone isprimary flag. *

Type: boolean

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String PHONE_ISPRIMARY = ContactsContract.Intents.Insert.PHONE_ISPRIMARY; /** * The extra field for an optional second contact phone number. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SECONDARY_PHONE = ContactsContract.Intents.Insert.SECONDARY_PHONE; /** * The extra field for an optional second contact phone number type. *

Type: Either an integer value from {@link android.provider.Contacts.PhonesColumns PhonesColumns}, * or a string specifying a custom label.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SECONDARY_PHONE_TYPE = ContactsContract.Intents.Insert.SECONDARY_PHONE_TYPE; /** * The extra field for an optional third contact phone number. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TERTIARY_PHONE = ContactsContract.Intents.Insert.TERTIARY_PHONE; /** * The extra field for an optional third contact phone number type. *

Type: Either an integer value from {@link android.provider.Contacts.PhonesColumns PhonesColumns}, * or a string specifying a custom label.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TERTIARY_PHONE_TYPE = ContactsContract.Intents.Insert.TERTIARY_PHONE_TYPE; /** * The extra field for the contact email address. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String EMAIL = ContactsContract.Intents.Insert.EMAIL; /** * The extra field for the contact email type. *

Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} * or a string specifying a custom label.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String EMAIL_TYPE = ContactsContract.Intents.Insert.EMAIL_TYPE; /** * The extra field for the email isprimary flag. *

Type: boolean

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String EMAIL_ISPRIMARY = ContactsContract.Intents.Insert.EMAIL_ISPRIMARY; /** * The extra field for an optional second contact email address. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SECONDARY_EMAIL = ContactsContract.Intents.Insert.SECONDARY_EMAIL; /** * The extra field for an optional second contact email type. *

Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} * or a string specifying a custom label.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String SECONDARY_EMAIL_TYPE = ContactsContract.Intents.Insert.SECONDARY_EMAIL_TYPE; /** * The extra field for an optional third contact email address. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TERTIARY_EMAIL = ContactsContract.Intents.Insert.TERTIARY_EMAIL; /** * The extra field for an optional third contact email type. *

Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} * or a string specifying a custom label.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String TERTIARY_EMAIL_TYPE = ContactsContract.Intents.Insert.TERTIARY_EMAIL_TYPE; /** * The extra field for the contact postal address. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String POSTAL = ContactsContract.Intents.Insert.POSTAL; /** * The extra field for the contact postal address type. *

Type: Either an integer value from {@link android.provider.Contacts.ContactMethodsColumns ContactMethodsColumns} * or a string specifying a custom label.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String POSTAL_TYPE = ContactsContract.Intents.Insert.POSTAL_TYPE; /** * The extra field for the postal isprimary flag. *

Type: boolean

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String POSTAL_ISPRIMARY = ContactsContract.Intents.Insert.POSTAL_ISPRIMARY; /** * The extra field for an IM handle. *

Type: String

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String IM_HANDLE = ContactsContract.Intents.Insert.IM_HANDLE; /** * The extra field for the IM protocol *

Type: the result of {@link Contacts.ContactMethods#encodePredefinedImProtocol} * or {@link Contacts.ContactMethods#encodeCustomImProtocol}.

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String IM_PROTOCOL = ContactsContract.Intents.Insert.IM_PROTOCOL; /** * The extra field for the IM isprimary flag. *

Type: boolean

* @deprecated see {@link android.provider.ContactsContract} */ @Deprecated public static final String IM_ISPRIMARY = ContactsContract.Intents.Insert.IM_ISPRIMARY; } } }