0

是否可以在 Android 应用程序中检索与用户的 google 帐户关联的所有电子邮件地址,而不仅仅是 gmail?

我试过了:

Pattern emailPattern = Patterns.EMAIL_ADDRESS; // API level 8+
Account[] accounts = AccountManager.get(context).getAccounts();
for (Account account : accounts) {
    if (emailPattern.matcher(account.name).matches()) {
        String possibleEmail = account.name;
        ...
    }
}

但这只会返回 gmail 地址。我正在寻找适用于 2.3+ 的解决方案

谢谢!

4

0 回答 0