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

我正在尝试使用Google Play服务生成的意图来选择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);
    }
  }

该对话框显示我的Google帐户以及创建新帐户的选项.

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

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性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...