Home | History | Annotate | Download | only in list

Lines Matching refs:Groups

40 import android.provider.ContactsContract.Groups;
73 * Shows a list of all available {@link Groups} available, letting the user
141 final Uri.Builder groupsUri = Groups.CONTENT_URI.buildUpon()
142 .appendQueryParameter(Groups.ACCOUNT_NAME, account.name)
143 .appendQueryParameter(Groups.ACCOUNT_TYPE, account.type);
145 groupsUri.appendQueryParameter(Groups.DATA_SET, account.dataSet).build();
148 ContactsContract.Groups.newEntityIterator(resolver.query(
236 * Entry holding any changes to {@link Groups} or {@link Settings} rows,
237 * such as {@link Groups#SHOULD_SYNC} or {@link Groups#GROUP_VISIBLE}.
312 return getAsInteger(mUngrouped ? Settings.SHOULD_SYNC : Groups.SHOULD_SYNC,
317 return getAsInteger(mUngrouped ? Settings.UNGROUPED_VISIBLE : Groups.GROUP_VISIBLE,
322 put(mUngrouped ? Settings.SHOULD_SYNC : Groups.SHOULD_SYNC, shouldSync ? 1 : 0);
326 put(mUngrouped ? Settings.UNGROUPED_VISIBLE : Groups.GROUP_VISIBLE, visible ? 1 : 0);
346 final Integer titleRes = getAsInteger(Groups.TITLE_RES);
348 final String packageName = getAsString(Groups.RES_PACKAGE);
351 return getAsString(Groups.TITLE);
358 * changes to the {@link Groups} or {@link Settings} row described by
394 addCallerIsSyncAdapterParameter(Groups.CONTENT_URI))
395 .withSelection(Groups._ID + "=" + this.getId(), null)
412 * {@link Comparator} to sort by {@link Groups#_ID}.
461 * Build an {@link AccountDisplay} covering all {@link Groups} under the
539 * grouped by {@link AccountWithDataSet} type. Shows footer row when any groups are
650 // Count is any synced groups, plus possible footer
848 * Background task that persists changes to {@link Groups#GROUP_VISIBLE},
884 Log.e(TAG, "Problem saving display groups", e);
886 Log.e(TAG, "Problem saving display groups", e);