开发者

Fetch email of configured account in android phone?

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜