创建房间和自动匹配时一切正常,但问题是当我调用p.getDisplayName()时,在这段代码中它没有返回对手的名字,它会返回一些垃圾字母..
void updatePeerScoresDisplay() {
((TextView) findViewById(R.id.score0)).setText(formatScore(mScore) + " - Me");
int[] arr = {
R.id.score1, R.id.score2, R.id.score3
};
int i = 0;
if (mRoomId != null) {
for (Participant p : mParticipants) {
String pid = p.getParticipantId();
if (pid.equals(mMyId))
continue;
if (p.getStatus() != Participant.STATUS_JOINED)
continue;
int score = mParticipantScore.containsKey(pid) ? mParticipantScore.get(pid) : 0;
((TextView) findViewById(arr[i])).setText(formatScore(score) + " - "+
p.getDisplayName());
++i;
}
}
答案 0 :(得分:1)
它会返回类似Player234的内容,即使他/她在你的圈子里(就像我所经历的那样),它也不会返回玩家的名字。这是一场随机对手的比赛。
google play game realtime multiplayer how to get quickmatch player's name?