Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 从Google Play用户界面检测退出大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我的游戏目前正在使用菜单中的登录和注销按钮,以便使用Google Play排行榜/成就.不幸的是,用户也可以从Google Play用户界面退出,但GameHelper.isSignedIn()在通过Google的用户界面执行此操作时仍然会返回true.当用户用户以这种方式注销后尝试检查排行榜或成就时,游戏崩溃.

有没有人知道更新的方式来检查用户是否通过用户界面注销?我说更新了,因为我已经看到stackoverflow中的一些线程不起作用.

解决方法

我刚跟着 https://developers.google.com/games/services/training/signin
一切正常.
它正在使用

Boolean mExplicitSignOut = false;
Boolean mInSignInFlow = false; // set to true when you're in the middle of the
                           // sign in flow,to kNow you should not attempt
                           // to connect in onStart()
GoogleApiClient mGoogleApiClient;  // initialized in onCreate

@Override
protected void onStart() {
   super.onStart();
   if (!mInSignInFlow && !mExplicitSignOut) {
    // auto sign in
    mGoogleApiClient.connect();
   }
}

@Override
public void onClick (View view) {
if (view.getId() == R.id.sign_ouT_Button) {
    // user explicitly signed out,so turn off auto sign in
    mExplicitSignOut = true;
    if (mGoogleApiClient != null && mGoogleApiClient.isConnected()) {
        Games.signOut(mGoogleApiClient);
        mGoogleApiClient.disconnect();
    }
}
}

大佬总结

以上是大佬教程为你收集整理的android – 从Google Play用户界面检测退出全部内容,希望文章能够帮你解决android – 从Google Play用户界面检测退出所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。