我正在尝试使用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 – AccountPicker.newChooseAccountIntent,在选择帐户时关闭对话框全部内容,希望文章能够帮你解决android – AccountPicker.newChooseAccountIntent,在选择帐户时关闭对话框所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)