我想在游戏中实施Google排行榜。 Google表示我需要使用BaseGameActivity,但我使用的是AndEngine,而不是基于相同的BaseGameActivity。
在googles网站上写道,如果我不使用BaseGameActivity,我应该使用GameHelper。
mHelper = new GameHelper(this, GameHelper.CLIENT_ALL);
但GameHelper类没有解决。你知道我应该实现哪个库以及我应该如何实现以使GameHelper类工作
答案 0 :(得分:0)
https://developers.google.com/games/services/android/init
这里解释了集成。 首先,您需要将其作为项目导入到eclipse中,然后将其作为库添加到项目中。
它还包含GameHelper类。
如果您不想使用BaseActivity,您可以查看BaseActivity源代码并将相关代码添加到您自己的活动中。
它基本上初始化onCreate
中的GameHelper对象,并在onStart
onPause
等中调用其生命周期方法。
Google本身已将此指南作为单独的部分提供 https://developers.google.com/games/services/android/init#using_gamehelper_without_basegameactivity