我在为我的 Google Play 游戏服务设置 GamesClient 对象时遇到了问题。
所以我有我的主要活动,它扩展了 BaseGameUtilities。在 onCreate() 方法中,我尝试设置我的 GamesClient
GamesClient.Builder gameClientBuilder = new GamesClient.Builder(getBaseContext(), this, this);
在 Eclipse 中出现错误:“构造函数 GamesClient.Builder(Context, MainActivity, MainActivity) 未定义”
我还尝试了以下调用,但均未成功:
GamesClient.Builder gameClientBuilder = new GamesClient.Builder(this, this, this);
和
GamesClient gameClient = new GamesClient.Builder(getBaseContext(), this, this).create();
和
GamesClient gameClient = new GamesClient(getBaseContext(), this, this).create();
我不确定这是因为我在哪里称呼它,还是与我如何称呼它有关。非常感谢任何帮助!
干杯