diff options
| author | Daniel Lehmann <lehmannd@google.com> | 2012-03-09 14:30:50 -0800 |
|---|---|---|
| committer | Daniel Lehmann <lehmannd@google.com> | 2012-03-09 14:30:50 -0800 |
| commit | db919155a87b4adf44874b817838458e04d9d17c (patch) | |
| tree | c4f1a6c759ae470f2228e9459c69af1bee1227c1 /core | |
| parent | e70583e629e15ff77b6c12d5db39b4f62b6103ab (diff) | |
| download | frameworks_base-db919155a87b4adf44874b817838458e04d9d17c.zip frameworks_base-db919155a87b4adf44874b817838458e04d9d17c.tar.gz frameworks_base-db919155a87b4adf44874b817838458e04d9d17c.tar.bz2 | |
Expose NORMALIZED_NUMBER in the API
Bug:6126736
Change-Id: If9dc84150c58d3968de9c6e4f1e54dab6b611dd7
Diffstat (limited to 'core')
| -rw-r--r-- | core/java/android/provider/ContactsContract.java | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index d724d56..0e9306b 100644 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -4531,8 +4531,6 @@ public final class ContactsContract { /** * The phone number's E164 representation. * <P>Type: TEXT</P> - * - * @hide */ public static final String NORMALIZED_NUMBER = "normalized_number"; } @@ -5408,10 +5406,10 @@ public final class ContactsContract { public static final String NUMBER = DATA; /** - * The phone number's E164 representation. + * The phone number's E164 representation. This value can be omitted in which + * case the provider will try to automatically infer it. If present, {@link #NUMBER} + * has to be set as well (it will be ignored otherwise). * <P>Type: TEXT</P> - * - * @hide */ public static final String NORMALIZED_NUMBER = DATA4; |
