Google Play游戏和个人资料照片

时间:2016-03-03 22:29:23

标签: android google-play-games

最近,Google Play游戏更新了他们的服务,无需使用Google+帐户,相反,玩家会创建自己的昵称,并选择个人资料图片。

如何加载此个人资料图片以显示它?

之前,我使用了var se = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); 课程的getIconImageUri()来显示Google+个人资料图片,但现在它只是引发了一些奇怪的例外。

这是一个异常的片段:

Player

1 个答案:

答案 0 :(得分:5)

您必须立即使用ImageManager,因为图像本地存储在设备上。

public void showPlayerImage(int imgViewId) {
    ImageView image = (ImageView) findViewById(imgViewId);

    Player me = Games.Players.getCurrentPlayer(mGoogleApiClient);

    ImageManager mgr = ImageManager.create(this);
    mgr.loadImage(image, me.getIconImageUri());
}