gpt4 book ai didi

android - AccountPicker.newChooseAccountIntent,选择帐户时对话框关闭

转载 作者:太空宇宙 更新时间:2023-11-03 12:09:30 31 4
gpt4 key购买 nike

我正在尝试使用 Google Play 服务生成的 Intent 来选择 Google 帐户

private void showGoogleAccountPicker() {
Intent googlePicker = AccountPicker.newChooseAccountIntent(null, null,
new String[] { GoogleAuthUtil.GOOGLE_ACCOUNT_TYPE }, true, null, null, null, null);
startActivityForResult(googlePicker, PICK_ACCOUNT_REQUEST);
}

@Override
protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
if (requestCode == PICK_ACCOUNT_REQUEST && resultCode == RESULT_OK) {
String accountName = data.getStringExtra(AccountManager.KEY_ACCOUNT_NAME);
Log.d(TAG, "Account Name=" + accountName);
}
}

该对话框显示我的谷歌帐户和创建新帐户的选项。

enter image description here

如果我选择“添加帐户”选项,我会正确地重定向到帐户创建向导,但如果我选择现有帐户并单击“确定”,对话框将关闭,但它永远不会返回到 Activity

Logcat 只打印这一行。我认为这没有任何关系。

W/IInputConnectionWrapper(23576): showStatusIcon on inactive InputConnection

来源

http://gmariotti.blogspot.com.es/2013/03/snippet-google-picker-account.html http://developer.android.com/reference/com/google/android/gms/common/AccountPicker.html

最佳答案

事实证明我的 Activity 不在 Back Stack 中,因为我在 Manifest 中明确请求它

<activity
android:name=".ui.LoginActivity"
android:label="@string/app_name"
android:noHistory="true"

所以 Dialog 找不到任何人来返回结果。

真是浪费时间:(

关于android - AccountPicker.newChooseAccountIntent,选择帐户时对话框关闭,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15529366/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com