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

  /packages/apps/Settings/src/com/android/settings/accounts/
SyncSettings.java 33 import com.android.settings.AccountPreference;
94 if (preference instanceof AccountPreference) {
95 startAccountSettings((AccountPreference) preference);
102 private void startAccountSettings(AccountPreference acctPref) {
122 if (parent.getPreference(i) instanceof AccountPreference) {
152 final AccountPreference preference =
153 new AccountPreference(getActivity(), account, icon, auths, true);
166 if (pref instanceof AccountPreference) {
167 AccountPreference accPref = (AccountPreference)
    [all...]
ManageAccountsSettings.java 52 import com.android.settings.AccountPreference;
137 if (preference instanceof AccountPreference) {
138 startAccountSettings((AccountPreference) preference);
145 private void startAccountSettings(AccountPreference acctPref) {
194 if (pref instanceof AccountPreference) {
195 Account account = ((AccountPreference) pref).getAccount();
234 if (! (pref instanceof AccountPreference)) {
238 AccountPreference accountPref = (AccountPreference) pref;
277 accountPref.setSyncStatus(AccountPreference.SYNC_ERROR, true)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AccountPreference.java 30 * AccountPreference is used to display a username, status and provider icon for an account on
33 public class AccountPreference extends Preference {
34 private static final String TAG = "AccountPreference";
45 public AccountPreference(Context context, Account account, Drawable icon,

Completed in 439 milliseconds