有没有人知道更新的方式来检查用户是否通过用户界面注销?我说更新了,因为我已经看到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@OverrIDeprotected voID onStart() { super.onStart(); if (!mInSignInFlow && !mExplicitSignOut) { // auto sign in mGoogleapiclient.connect(); }}@OverrIDepublic 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用户界面检测退出所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)