AccountManager.newChooseAccountIntent,而无需创建帐户

时间:2019-01-23 11:53:58

标签: android accountmanager google-account android-account

我希望用户从我的Android应用中选择一个现有帐户。我正在使用

Intent googlePicker = AccountManager
        .newChooseAccountIntent(null, null, new String[]{GoogleAuthUtil.GOOGLE_ACCOUNT_TYPE},
                true, null, null, null, null);
a.startActivityForResult(googlePicker, ACCOUNT_REQUEST_CODE);

但是我在文档中找不到避免请求创建新帐户的方法。有可能实现吗?

enter image description here

1 个答案:

答案 0 :(得分:0)

您需要为此使用google登录:

首先访问以下链接:

https://developers.google.com/identity/sign-in/android/start-integrating

然后按照本教程进行操作:

https://androidclarified.com/google-signin-android-example/