我正在从Google Play服务学习LeaderBoard。当我调用下面的代码时,我的分数变成了1137
public void updateAllScore(){
Games.getLeaderboardsClient(this, GoogleSignIn.getLastSignedInAccount(this))
.submitScore(getString(R.string.leaderboard_id), 1137);
}
在我调用相同的代码后,得分没有改变。然后,我将1137更改为1,但分数没有改变。分数仍然是1137。
public void updateAllScore(){
Games.getLeaderboardsClient(this, GoogleSignIn.getLastSignedInAccount(this))
.submitScore(getString(R.string.leaderboard_id), 1);
}