这个问题一般针对 android 设备进行讨论,但是如果您尝试在 Kindle Fire 上运行此代码,您得到的只是用户名。有什么方法可以获取邮箱地址吗?我们希望弹出一个对话框,其中包含已预先填写的电子邮件地址,这样如果正确,他们就不必输入它,但似乎唯一的解决方案是让他们重新输入它。
编辑:这是其他线程建议的代码(在 Kindle Fire 上不起作用):
Account[] accounts = AccountManager.get(this).getAccounts();
for (Account account : accounts) {
// TODO: Check possibleEmail against an email regex or treat
// account.name as an email address only for certain account.type values.
String possibleEmail = account.name;
// possibleEmail is a list of account names, hopefully including the @gmail.com address.
}