Skip to content Skip to sidebar Skip to footer

Check If Any Email Account Setup In Android

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

Solution 1:

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
    }

Post a Comment for "Check If Any Email Account Setup In Android"