HomeSort by relevance Sort by last modified time
    Searched refs:AccountPreference (Results 1 - 2 of 2) sorted by null

  /packages/apps/AccountsAndSyncSettings/src/com/android/settings/
AccountPreference.java 33 * AccountPreference is used to display a username, status and provider icon for an account on
36 public class AccountPreference extends Preference {
37 private static final String TAG = "AccountPreference";
48 public AccountPreference(Context context, Account account, Drawable icon,
138 if (!(other instanceof AccountPreference)) {
142 return mAccount.name.compareTo(((AccountPreference) other).mAccount.name);
ManageAccountsSettings.java 174 if (! (pref instanceof AccountPreference)) {
178 AccountPreference accountPref = (AccountPreference) pref;
210 int syncStatus = AccountPreference.SYNC_DISABLED;
212 syncStatus = AccountPreference.SYNC_ERROR;
214 syncStatus = AccountPreference.SYNC_DISABLED;
216 syncStatus = AccountPreference.SYNC_ENABLED;
243 AccountPreference preference = new AccountPreference(this, account, icon, auths);
254 AccountPreference pref = (AccountPreference) mManageAccountsCategory.getPreference(i)
    [all...]

Completed in 16 milliseconds