2
如何設置任何電子郵件帳戶如何檢查android?檢查是否有任何電子郵件帳戶安裝在Android
如何設置任何電子郵件帳戶如何檢查android?檢查是否有任何電子郵件帳戶安裝在Android
可以使用AccountManager用於在Android手機上檢查谷歌帳戶:
AccountManager am = AccountManager.get(getApplicationContext());
Account[] accounts = am.getAccounts();
for (Account account : accounts) {
//do something with account
}
當心這種方法需要GET_ACCOUNTS運行權限=> https://developer.android.com/reference/android/accounts/ AccountManager.html#getAccounts() –