diff options
| author | 2009-08-19 09:23:33 -0700 | |
|---|---|---|
| committer | 2009-08-19 09:23:33 -0700 | |
| commit | a659744041d0b74b4243fdd448a5fa302a581278 (patch) | |
| tree | bc9b3bfbaf76de8e86d4dedac64a23ed398acee2 | |
| parent | 460f541001112cdbee6902d33769191d5b264884 (diff) | |
Flag to make all contacts from specific source visible.
| -rw-r--r-- | core/java/android/provider/ContactsContract.java | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java index 09d03273f515..9a1d2a05423e 100644 --- a/core/java/android/provider/ContactsContract.java +++ b/core/java/android/provider/ContactsContract.java @@ -1520,9 +1520,16 @@ public final class ContactsContract { public static final String SHOULD_SYNC = "should_sync"; /** - * Flag indicating if the contacts from this source, but that don't have - * any specific {@link GroupMembership} entries should be visible in any - * user interface. + * Overriding flag indicating if contacts from this source should be + * visible in any user interface. + * <p> + * Type: INTEGER (boolean) + */ + public static final String SOURCE_VISIBLE = "source_visible"; + + /** + * Flag indicating if contacts without any {@link GroupMembership} + * entries should be visible in any user interface. * <p> * Type: INTEGER (boolean) */ |