我正在尝试为 android 应用程序实现 google plus 登录。我按照谷歌开发者页面“ https://developers.google.com/+/mobile/android/getting-started ”上的指南进行操作。我唯一的问题是,当设备上只有一个 google 帐户时,帐户选择器对话框不会显示。有没有解决的办法?
问问题
4591 次
1 回答
5
我按照@acj 的建议使用了 AccountPicker。我启动了一个 AccountPicker 意图
Intent intent = AccountPicker.newChooseAccountIntent(null, null,
new String[] { "com.google" }, true, null, null, null,
null);
startActivityForResult(intent, ACCOUNT_PICKER_REQUEST_CODE);
当返回结果时,我初始化了 GoogleApiClient,按照开发者页面上的说明设置 accountName:
GoogleApiClient client = new GoogleApiClient.Builder(this)
.addApi(Plus.API)
.addScope(Plus.SCOPE_PLUS_LOGIN)
.setAccountName("users.account.name@gmail.com")
.build();
client.connect();
@dcool,希望这会有所帮助。
于 2014-07-08T16:47:34.900 回答