其他分享
首页 > 其他分享> > android-列出Google Apps帐户

android-列出Google Apps帐户

作者:互联网

如何确定特定的Google帐户是否为Google Apps帐户?

我的手机上有2个帐户.

普通的Google帐户和Google Apps帐户

accountManager = AccountManager.get(getApplicationContext());
Account[] accounts = accountManager.getAccounts();
for ( int i = 0; i < accounts.length; i++ )
{
    Log.d(TAG, accounts[i].name + " - " + accounts[i].type);            
}

它将“ com.google”打印为两者的类型.

解决方法:

AFAIK account.name包含电子邮件,对吗?

Google帐户(也称为gmail)电子邮件地址包含@ gmail.com或@ googlemail.com. Google Apps帐户始终具有自定义域.这样您就可以区分它们.

标签:accountmanager,android
来源: https://codeday.me/bug/20191102/1989306.html