Android:如何在获取Google令牌的异步任务上实现回调?

时间:2015-08-31 12:11:48

标签: android android-asynctask google-signin

我试图在我的应用上实施谷歌登录。我设法登录并存储令牌,但由于任务是异步的,我不知道它何时完成,因此我无法在其他方法中安全地使用令牌。如何向onPostExecute添加回调方法?

以下是代码:

 @Override
public void onConnected(Bundle bundle) {
    // onConnected indicates that an account was selected on the device, that the selected
    // account has granted any requested permissions to our app and that we were able to
    // establish a service connection to Google Play services.
    Log.d(TAG, "onConnected:" + bundle);
    mShouldResolve = false;

    mAccountName = Plus.AccountApi.getAccountName(mGoogleApiClient);

    //HERE I RETRIEVE THE TOKEN AND NEED TO IMPLEMENT CALLBACK
    new RetrieveTokenTask().execute(mAccountName);


    // Show the signed-in UI
    Intent intent = new Intent(getActivity(), MainActivity.class);
    startActivity(intent);
}

@Override
public void onClick(View v) {

    if (v.getId() == R.id.sign_in_button) {
        onSignInClicked();
    }
}

private void onSignInClicked() {
    // User clicked the sign-in button, so begin the sign-in process and automatically
    // attempt to resolve any errors that occur.
    mShouldResolve = true;
    mGoogleApiClient.connect();

    // Show a message to the user that we are signing in.
    //mStatusTextView.setText(R.string.signing_in);
    Log.i("GoogleSignIn", "in progress");
}


private class RetrieveTokenTask extends AsyncTask<String, Void, String> {

    @Override
    protected String doInBackground(String... params) {
        String accountName = params[0];
        String scopes = "oauth2:profile email";
        String token = null;
        try {
            token = GoogleAuthUtil.getToken(getActivity().getApplicationContext(), accountName, scopes);
        } catch (IOException e) {
            Log.e(TAG, e.getMessage());
        } catch (UserRecoverableAuthException e) {
            //startActivityForResult(e.getIntent(), REQ_SIGN_IN_REQUIRED);
        } catch (GoogleAuthException e) {
            Log.e(TAG, e.getMessage());
        }
        return token;
    }

    @Override
    protected void onPostExecute(String token) {
        super.onPostExecute(token);
        Log.i("Token Value: ", token);
        //TODO : access token verifier https://developers.google.com/identity/sign-in/android/backend-auth
        accessToken = token;
    }
}

2 个答案:

答案 0 :(得分:1)

你可以在onPostExecute方法中启动主要活动。 这样你就可以确定任务已经执行并即将完成。

检查

private class RetrieveTokenTask extends AsyncTask<String, Void, String> {

 private Callback callback;

public RetrieveTokenTask(Callback callback){
     this.callback = callback;
}

@Override
protected String doInBackground(String... params) {
    String accountName = params[0];
    String scopes = "oauth2:profile email";
    String token = null;
    try {
        token = GoogleAuthUtil.getToken(getActivity().getApplicationContext(), accountName, scopes);
    } catch (IOException e) {
        Log.e(TAG, e.getMessage());
    } catch (UserRecoverableAuthException e) {
        //startActivityForResult(e.getIntent(), REQ_SIGN_IN_REQUIRED);
    } catch (GoogleAuthException e) {
        Log.e(TAG, e.getMessage());
    }
    return token;
}

@Override
protected void onPostExecute(String token) {
    super.onPostExecute(token);
    Log.i("Token Value: ", token);
    //TODO : access token verifier https://developers.google.com/identity/sign-in/android/backend-auth
    accessToken = token;
    callback.done();
}

}

//create an interface
public interface Callback{
  //create the callback method
   void done();
}

启动任务时,在构造函数中传递回调接口的实例,例如:

new RetrieveTokenTask(this).execute(mAccountName);

并使您的活动实现回调接口。 例如MainActivity implements Callback

现在MainActivity将有一个完成方法,这个方法是你的回调。

我希望这个解释很有帮助。

答案 1 :(得分:0)

不要在Android上使用AsyncTask。这很糟糕,非常糟糕。你将开始有内存泄漏,这是令人讨厌的。

以下是有关Android上AsyncTask不良的更多信息:http://simonvt.net/2014/04/17/asynctask-is-bad-and-you-should-feel-bad/

对于您的网络电话,为什么要重新发明轮子?有很多完善且经过测试的图书馆为您完成所有艰苦的工作,甚至为您提供回调。

我建议您使用Square Retrofit,它们为您提供同步调用以及异步(回调)和可观察对象。只需选择你想要的那个,很可能是回调的异步。