Home | History | Annotate | Download | only in accounts

Lines Matching defs:account

20 import android.accounts.Account;
42 private static final String ACCOUNT_TYPE = "com.settingstest.account-prefs";
43 private static final String PREF_TITLE = "Test preference for external account";
58 // add a test account
59 final String testAccountName = "Test Account";
60 final Account account = new Account(testAccountName, ACCOUNT_TYPE);
63 accountManager.addAccountExplicitly(account, null /* password */, null /* userdata */);
66 // launch Accounts Settings and select the test account
70 // remove test account
71 accountManager.removeAccountExplicitly(account);