Home | History | Annotate | Download | only in contacts

Lines Matching refs:Groups

21 import android.provider.ContactsContract.Groups;
25 * and number of groups per account. This list is sorted by account type, account name, where the
27 * groups.
32 Groups.ACCOUNT_NAME,
33 Groups.ACCOUNT_TYPE,
34 Groups.DATA_SET,
35 Groups._ID,
36 Groups.TITLE,
37 Groups.SUMMARY_COUNT,
47 private static final Uri GROUP_LIST_URI = Groups.CONTENT_SUMMARY_URI;
50 super(context, GROUP_LIST_URI, COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "
51 + Groups.ACCOUNT_NAME + " NOT NULL AND " + Groups.AUTO_ADD + "=0 AND " +
52 Groups.FAVORITES + "=0 AND " + Groups.DELETED + "=0", null,
53 Groups.ACCOUNT_TYPE + ", " + Groups.ACCOUNT_NAME + ", " + Groups.DATA_SET + ", " +
54 Groups.TITLE + " COLLATE LOCALIZED ASC");