如何从 Google Play 游戏服务的排行榜中获得排名?

Posted

技术标签:

【中文标题】如何从 Google Play 游戏服务的排行榜中获得排名?【英文标题】:How to get rank from Google Play game service's leaderboard? 【发布时间】:2016-10-03 07:36:21 【问题描述】:

我正在开发一个大型应用程序,我必须从 Google Play 服务的排行榜中获取玩家的排名。排行榜运行良好。我已经找到了正确的方法,但我不知道我应该如何使用它:

private void loadRankOfLeaderBoard() 
    Games.Leaderboards.loadCurrentPlayerLeaderboardScore(mGoogleApiClient, getResources().getString(R.string.leaderboard_leaderboard), LeaderboardVariant.TIME_SPAN_ALL_TIME, LeaderboardVariant.COLLECTION_PUBLIC).setResultCallback(new ResultCallback<Leaderboards.LoadPlayerScoreResult>() 
        @Override
        public void onResult(final Leaderboards.LoadPlayerScoreResult scoreResult) 
            if (isScoreResultValid(scoreResult)) 
                rank = (int)scoreResult.getScore().getRank();                
            
        
    );

但永远不会调用 onResult 回调。我应该在哪里调用函数 loadRankOfLeaderBoard?我试着把它放在onCreateonActivityResult...

感谢您的帮助!

【问题讨论】:

【参考方案1】:

好的,我终于找到了解决方案...here for curious

所以如果你有同样的问题,你必须把函数 loadRankOfLeaderBoard 放在函数“onConnected”上,当你在 google play 服务上连接你的设备时会调用它。

【讨论】:

以上是关于如何从 Google Play 游戏服务的排行榜中获得排名?的主要内容,如果未能解决你的问题,请参考以下文章

Google Play 游戏服务退出回调

如何在 Google Play 游戏服务中获取排行榜和成就信息

从 google play 游戏服务排行榜屏幕注销

如何限制到最大值。在 Google Play 游戏服务排行榜 API 中提交 1x 分数?

我们如何查看 Google Play 服务中的排行榜详情?

如何通过 LibGdx 使用 Google Play 游戏服务