我有以下代码在我的
基本活动
onCreate()
// Google Play Services
mGoogleSignInClient = GoogleSignIn.getClient(this, new GoogleSignInOptions
.Builder(GoogleSignInOptions.DEFAULT_GAMES_SIGN_IN)
.build());
那我就叫这个
在子类中
startActivityForResult(mGoogleSignInClient.getSignInIntent(), RC_SIGN_IN);
我使用以下代码解锁成就
GoogleSignInAccount googleSignInAccount = GoogleSignIn.getLastSignedInAccount(activity);
if (googleSignInAccount != null) {
Games.getAchievementsClient(activity, googleSignInAccount)
.unlockImmediate(id);
}
它可以工作,但我看不到任何“成就已解锁”弹出窗口。