我将此功能用于帐户选择并选择获取用户的电子邮件。
private void pickUserAccount() {
String[] accountTypes = new String[]{"com.google"};
try { // request account
Intent intent = AccountPicker
.newChooseAccountIntent(null, null, accountTypes, false, null, null, null, null);
startActivityForResult(intent, AuthProcess.REQUEST_CODE_PICK_ACCOUNT);
/*
Error control
*/
} catch (CriticalException e) {
throw e;
} catch (OutOfMemoryError e) { // problems with memory
throw e;
} catch (Throwable e) { // Other exceptions
final String message = "Error during google account picker dialog: " + e;
throw new CriticalException(logcat, message);
}
} // End: pickUserAccount
在 android 6.0 中,尽管设备上只有一个 google 帐户,但此代码为所选帐户打开对话框。在 android 4.4.2 中它工作得很好。有什么问题?谢谢你。