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以降で動作するソリューションを探しています
ありがとう!