Google Play Games achievement unlocked popup not showing

后端 未结 4 1010
一生所求
一生所求 2020-12-06 06:43

I\'m unlocking achievement using this simple method from developers docs:

Games.Achievements.unlock(getApiClient(), \"my_achievement_id\");

4条回答
  •  悲&欢浪女
    2020-12-06 07:05

    Jacek and user3782779 answers didn't work for me, I had to do the following:

    GamesClient gamesClient = Games.getGamesClient(this, GoogleSignIn.getLastSignedInAccount(this));
    gamesClient.setViewForPopups(findViewById(android.R.id.content));
    gamesClient.setGravityForPopups(Gravity.TOP | Gravity.CENTER_HORIZONTAL);
    

提交回复
热议问题