Lines Matching refs:AccountManager
16 <li><a href="#ForYou">Determine if AccountManager is for You</a></li>
19 <li><a href="#TaskFive">Query AccountManager for a List of Accounts</a></li>
33 <p>For many applications, the answer is the {@link android.accounts.AccountManager} APIs. With the
44 <h2 id="ForYou">Determine if AccountManager is for You</h2>
50 <li>Retrieve a built-in account from {@link android.accounts.AccountManager}</li>
74 When you query {@link android.accounts.AccountManager} for account names, you can choose to filter
97 <h2 id="TaskFive">Query AccountManager for a List of Accounts</h2>
100 type. Get an instance of {@link android.accounts.AccountManager} by calling {@link
101 android.accounts.AccountManager#get(android.content.Context) AccountManager.get()}. Then use that
102 instance to call {@link android.accounts.AccountManager#getAccountsByType(java.lang.String)
106 AccountManager am = AccountManager.get(this); // "this" references the current Context