我想要获取手机上配置的帐户的电子邮件。
我该怎么做?电子邮件是存储在数据库中还是在运行时获取?
答案 0 :(得分:4)
您需要使用GET_ACCOUNTS权限,然后运行此代码:
Account[] accounts = AccountManager.get(this).getAccounts();
for (Account account : accounts) {
// Check here for the type and name to find the email records.
}