diff options
| author | 2010-01-29 17:37:05 -0800 | |
|---|---|---|
| committer | 2010-01-29 17:37:05 -0800 | |
| commit | e7ace67f603694fca7fe84e974f1611996c25fe1 (patch) | |
| tree | 9faa30e35f8fe1203793c71ede67d3a64bd0d458 | |
| parent | 9327f4f671de3cbb795612bf4f314ceff88de865 (diff) | |
| parent | 2a650dd574a5e2871f51863e2446fbebc47dc0f8 (diff) | |
Merge "Adding system preferences for contacts: sort order and display order."
| -rw-r--r-- | core/java/android/provider/ContactsContract.java | 54 |
1 files changed, 52 insertions, 2 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index 16746d47ee9e..544e39963da7 100644 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -130,6 +130,57 @@ public final class ContactsContract { public static final String REQUESTING_PACKAGE_PARAM_KEY = "requesting_package"; /** + * @hide + */ + public static final class Preferences { + + /** + * A key in the {@link android.provider.Settings android.provider.Settings} provider + * that stores the preferred sorting order for contacts (by given name vs. by family name). + * + * @hide + */ + public static final String SORT_ORDER = "android.contacts.SORT_ORDER"; + + /** + * The value for the SORT_ORDER key corresponding to sorting by given name first. + * + * @hide + */ + public static final int SORT_ORDER_PRIMARY = 1; + + /** + * The value for the SORT_ORDER key corresponding to sorting by family name first. + * + * @hide + */ + public static final int SORT_ORDER_ALTERNATIVE = 2; + + /** + * A key in the {@link android.provider.Settings android.provider.Settings} provider + * that stores the preferred display order for contacts (given name first vs. family + * name first). + * + * @hide + */ + public static final String DISPLAY_ORDER = "android.contacts.DISPLAY_ORDER"; + + /** + * The value for the DISPLAY_ORDER key corresponding to showing the given name first. + * + * @hide + */ + public static final int DISPLAY_ORDER_PRIMARY = 1; + + /** + * The value for the DISPLAY_ORDER key corresponding to showing the family name first. + * + * @hide + */ + public static final int DISPLAY_ORDER_ALTERNATIVE = 2; + } + + /** * @hide should be removed when users are updated to refer to SyncState * @deprecated use SyncState instead */ @@ -551,8 +602,7 @@ public final class ContactsContract { /** * Sort key based on the alternative representation of the full name, * {@link #DISPLAY_NAME_ALTERNATIVE}. Thus for Western names, - * it is the one using the "family name first" format for - * Western names. + * it is the one using the "family name first" format. */ public static final String SORT_KEY_ALTERNATIVE = "sort_key_alt"; } |