が存在する場合、システムはアクティビティを自動的に表示しませんKEY_INTENT
。その活動を始めるのはあなた次第です。
サンプルコードは次のとおりです。
private AccountManagerCallback<Bundle> mAccountManagerCallback = new AccountManagerCallback<Bundle>() {
public void run(AccountManagerFuture<Bundle> future) {
Bundle bundle;
try {
bundle = future.getResult();
//if an intent was sent, start the required activity
if (bundle.containsKey(AccountManager.KEY_INTENT)) {
Intent intent = bundle.getParcelable(AccountManager.KEY_INTENT);
//clear the new task flag just in case, since a result is expected
int flags = intent.getFlags();
flags &= ~Intent.FLAG_ACTIVITY_NEW_TASK;
intent.setFlags(flags);
startActivityForResult(intent, REQUEST_CODE_AUTH);
} else {
//otherwise, just get the credentials
if (bundle.containsKey(AccountManager.KEY_AUTHTOKEN)) {
String authToken = bundle.getString(AccountManager.KEY_AUTHTOKEN);
String userMail = bundle.getString(AccountManager.KEY_ACCOUNT_NAME);
//use the credentials
}
}
}
catch(...) {
...
//handle errors, maybe retry your getAuthToken() call
}
}
}
これがあなたが探していたものであることを願っていますが、あなたの質問を正しく理解できなかった場合は、明確にしてください.
乾杯!