开发者

Fetch email of configured account in android phone?

开发者 https://www.devze.com 2023-04-04 17:38 出处:网络
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

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.
}
0

精彩评论

暂无评论...
验证码 换一张
取 消