5

在处理身份验证时,我对 Android 架构有一些疑问。

假设我调用AccountManager.getAuthToken了一个我需要进行身份验证的特定帐户。假设由于密码错误而导致身份验证失败。合约要求身份验证器AbstractAccountAuthenticator返回一个Bundle处理Activity用户名/密码输入的KEY_INTENT.

我的问题是:谁应该显示 UI?Android 是否会自动检测KEY_INTENT存在并运行 UI,或者我的代码是否必须符合' 响应startActivity中体现的意图?AccountManager这同样适用于AccountManager.addAccount通过 Future 接口捆绑结果的方式。

在哪里可以找到有关这些主题的教程?

谢谢

4

1 回答 1

0

当活动存在时,系统不会自动显示活动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
      }
    }
}

我希望这是您正在寻找的,但如果我没有正确理解您的问题,请澄清。

干杯!

于 2012-06-05T15:41:49.463 回答