HomeSort by relevance Sort by last modified time
    Searched defs:AccountType (Results 1 - 3 of 3) sorted by null

  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
AccountTypeTest.java 26 * Test case for {@link AccountType}.
41 assertEquals(DEFAULT, AccountType.getResourceText(c, null, -1, DEFAULT));
44 assertEquals(DEFAULT, AccountType.getResourceText(c, packageName, -1, DEFAULT));
49 AccountType.getResourceText(c, packageName, externalResID, DEFAULT));
54 AccountType.getResourceText(c, null, internalResId, DEFAULT));
58 * Verify if {@link AccountType#getInviteContactActionLabel} correctly gets the resource ID
59 * from {@link AccountType#getInviteContactActionResId}
67 AccountType accountType = new AccountType() {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
CompactPhotoSelectionFragment.java 22 import com.android.contacts.common.model.account.AccountType;
68 * Holds a photo {@link ValuesDelta} and {@link AccountType} information to draw
91 // From AccountType, everything we need to display the account type icon
98 public String accountType;
245 accountTypeImageView.setImageDrawable(AccountType.getDisplayIcon(
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountType.java 50 public abstract class AccountType {
51 private static final String TAG = "AccountType";
56 public String accountType = null;
202 return getResourceText(context, syncAdapterPackageName, titleRes, accountType);
223 return AccountTypeWithDataSet.get(accountType, dataSet);
504 * Compare two {@link AccountType} by their {@link AccountType#getDisplayLabel} with the
507 public static class DisplayLabelComparator implements Comparator<AccountType> {
516 private String getDisplayLabel(AccountType type) {
522 public int compare(AccountType lhs, AccountType rhs)
    [all...]

Completed in 123 milliseconds