If you searched for a Configured Device Email ID, this will help you.
Account[] accounts = AccountManager.get(ContactUs.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; Log.i("Email ID",possibleEmail); }
source share