Waheed Khan
Waheed Khan

Reputation: 1321

Check if any email account setup in android

How can I check in android if any email account is set up?

Upvotes: 2

Views: 2134

Answers (1)

ddewaele
ddewaele

Reputation: 22603

You can use the AccountManager for checking the google accounts on an android phone :

    AccountManager am = AccountManager.get(getApplicationContext());
    Account[] accounts = am.getAccounts();

    for (Account account : accounts) {
    //do something with account
    }

Upvotes: 4

Related Questions