android – 检查用户是否已使用Auth.GoogleSignInApi登录?

前端之家收集整理的这篇文章主要介绍了android – 检查用户是否已使用Auth.GoogleSignInApi登录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要为了登录用户我必须使用这段代码
Intent signInIntent = Auth.GoogleSignInApi.getSignInIntent(mGoogleApiClient);
startActivityForResult(signInIntent,RC_SIGN_IN);

注销

new ResultCallback<Status>() {
                @Override
                public void onResult(Status status) {
                    disconnect();
                }
            });

但是当用户重新启动应用程序并且他已经登录(之前没有退出)是否可以检测到这个“当前登录”状态?

显然,可以在应用程序的设置(共享首选项)中保存“登录”,但是可以使用google api进行检测吗?

解决方法

Here我找到了解决方案:
OptionalPendingResult<GoogleSignInResult> opr = Auth.GoogleSignInApi.silentSignIn(mGoogleApiClient);
        if (opr.isDone()) {
            // If the user's cached credentials are valid,the OptionalPendingResult will be "done"
            // and the GoogleSignInResult will be available instantly.
            Log.d(TAG,"Got cached sign-in");
            GoogleSignInResult result = opr.get();
            handleSignInResult(result);
        } else {
            // If the user has not prevIoUsly signed in on this device or the sign-in has expired,// this asynchronous branch will attempt to sign in the user silently.  Cross-device
            // single sign-on will occur in this branch.
            showProgressDialog();
            opr.setResultCallback(new ResultCallback<GoogleSignInResult>() {
                @Override
                public void onResult(GoogleSignInResult googleSignInResult) {
                    hideProgressDialog();
                    handleSignInResult(googleSignInResult);
                }
            });
        }
原文链接:https://www.f2er.com/android/316246.html

猜你在找的Android相关文章