Play Services v2 中成就的弹出通知

Popup notification for achievements in Play Services v2

提问人:Josemafuen 提问时间:11/4/2023 更新时间:11/4/2023 访问量:7

问:

在我的 Android 应用中,我正在使用 Play 服务实现成就。我注意到,虽然我的成就被正确解锁,但当用户实现它时,没有向他们显示默认弹出窗口。我已经看到,在 Play Services 实现的 v1 中,这个问题已通过如下修复:

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

但是在 v2 中,GamesClient 不能再像那样恢复。所以我想知道在 v2 中将如何完成,或者是否由于某种原因不再可能。这是我在 Gradle 中的库版本:

implementation "com.google.android.gms:play-services-games-v2:19.0.0"
Java Android 通知 google-play-services 成就

评论


答: 暂无答案