Most visited

Recently visited

Added in API level 5

ContactsContract.GroupsColumns

protected static interface ContactsContract.GroupsColumns

android.provider.ContactsContract.GroupsColumns
Known Indirect Subclasses


See also:

Summary

Constants

String AUTO_ADD

Any newly created contacts will automatically be added to groups that have this flag set to true.

String DATA_SET

The data set within the account that this group belongs to.

String DELETED

The "deleted" flag: "0" by default, "1" if the row has been marked for deletion.

String FAVORITES

When a contacts is marked as a favorites it will be automatically added to the groups that have this flag set, and when it is removed from favorites it will be removed from these groups.

String GROUP_IS_READ_ONLY

The "read-only" flag: "0" by default, "1" if the row cannot be modified or deleted except by a sync adapter.

String GROUP_VISIBLE

Flag indicating if the contacts belonging to this group should be visible in any user interface.

String NOTES

Notes about the group.

String RES_PACKAGE

The package name to use when creating Resources objects for this group.

String SHOULD_SYNC

Whether this group should be synced if the SYNC_EVERYTHING settings is false for this group's account.

String SUMMARY_COUNT

The total number of Contacts that have ContactsContract.CommonDataKinds.GroupMembership in this group.

String SUMMARY_WITH_PHONES

The total number of Contacts that have both ContactsContract.CommonDataKinds.GroupMembership in this group, and also have phone numbers.

String SYSTEM_ID

The ID of this group if it is a System Group, i.e.

String TITLE

The display title of this group.

String TITLE_RES

The display title of this group to load as a resource from RES_PACKAGE, which may be localized.

Constants

AUTO_ADD

Added in API level 11
String AUTO_ADD

Any newly created contacts will automatically be added to groups that have this flag set to true.

Type: INTEGER (boolean)

Constant Value: "auto_add"

DATA_SET

Added in API level 14
String DATA_SET

The data set within the account that this group belongs to. This allows multiple sync adapters for the same account type to distinguish between each others' group data. This is empty by default, and is completely optional. It only needs to be populated if multiple sync adapters are entering distinct group data for the same account type and account name.

Type: TEXT

Constant Value: "data_set"

DELETED

Added in API level 5
String DELETED

The "deleted" flag: "0" by default, "1" if the row has been marked for deletion. When delete(Uri, String, String[]) is called on a group, it is marked for deletion. The sync adaptor deletes the group on the server and then calls ContactResolver.delete once more, this time setting the the CALLER_IS_SYNCADAPTER query parameter to finalize the data removal.

Type: INTEGER

Constant Value: "deleted"

FAVORITES

Added in API level 11
String FAVORITES

When a contacts is marked as a favorites it will be automatically added to the groups that have this flag set, and when it is removed from favorites it will be removed from these groups.

Type: INTEGER (boolean)

Constant Value: "favorites"

GROUP_IS_READ_ONLY

Added in API level 11
String GROUP_IS_READ_ONLY

The "read-only" flag: "0" by default, "1" if the row cannot be modified or deleted except by a sync adapter. See CALLER_IS_SYNCADAPTER.

Type: INTEGER

Constant Value: "group_is_read_only"

GROUP_VISIBLE

Added in API level 5
String GROUP_VISIBLE

Flag indicating if the contacts belonging to this group should be visible in any user interface.

Type: INTEGER (boolean)

Constant Value: "group_visible"

NOTES

Added in API level 5
String NOTES

Notes about the group.

Type: TEXT

Constant Value: "notes"

RES_PACKAGE

Added in API level 21
String RES_PACKAGE

The package name to use when creating Resources objects for this group. This value is only designed for use when building user interfaces, and should not be used to infer the owner.

Constant Value: "res_package"

SHOULD_SYNC

Added in API level 5
String SHOULD_SYNC

Whether this group should be synced if the SYNC_EVERYTHING settings is false for this group's account.

Type: INTEGER (boolean)

Constant Value: "should_sync"

SUMMARY_COUNT

Added in API level 5
String SUMMARY_COUNT

The total number of Contacts that have ContactsContract.CommonDataKinds.GroupMembership in this group. Read-only value that is only present when querying CONTENT_SUMMARY_URI.

Type: INTEGER

Constant Value: "summ_count"

SUMMARY_WITH_PHONES

Added in API level 5
String SUMMARY_WITH_PHONES

The total number of Contacts that have both ContactsContract.CommonDataKinds.GroupMembership in this group, and also have phone numbers. Read-only value that is only present when querying CONTENT_SUMMARY_URI.

Type: INTEGER

Constant Value: "summ_phones"

SYSTEM_ID

Added in API level 5
String SYSTEM_ID

The ID of this group if it is a System Group, i.e. a group that has a special meaning to the sync adapter, null otherwise.

Type: TEXT

Constant Value: "system_id"

TITLE

Added in API level 5
String TITLE

The display title of this group.

Type: TEXT

Constant Value: "title"

TITLE_RES

Added in API level 21
String TITLE_RES

The display title of this group to load as a resource from RES_PACKAGE, which may be localized.

Type: TEXT

Constant Value: "title_res"

Hooray!