I want to fetch the emails of the account confi开发者_高级运维gured on my phone.
How can I do that? Are the emails stored in a database or they are fetched at runtime?
You need to use the GET_ACCOUNTS permission and then run this code:
Account[] accounts = AccountManager.get(this).getAccounts();
for (Account account : accounts) {
// Check here for the type and name to find the email records.
}
精彩评论