com.google.android.gms.games.multiplayer.Participant |
Known Indirect Subclasses
|
Data interface for multiplayer participants.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | STATUS_DECLINED | Constant indicating that this participant has declined the invitation. | |||||||||
int | STATUS_INVITED | Constant indicating that this participant has been sent an invitation. | |||||||||
int | STATUS_JOINED | Constant indicating that this participant has accepted the invitation and is joined. | |||||||||
int | STATUS_LEFT | Constant indicating that this participant joined a multiplayer game and subsequently left. |
[Expand]
Inherited Constants | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Return the name to display for this participant.
| |||||||||||
Loads the display name for this participant into the provided
CharArrayBuffer . | |||||||||||
Returns the URI of the hi-res image to display for this participant.
| |||||||||||
Returns the URI of the icon-sized image to display for this participant.
| |||||||||||
Returns the ID of this participant.
| |||||||||||
Returns the
Player that this participant represents. | |||||||||||
Retrieve the status of this participant.
| |||||||||||
Retrieves the connected status of the participant.
|
[Expand]
Inherited Methods | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
| |||||||||||||||
From interface
com.google.android.gms.common.data.Freezable
|
Constant indicating that this participant has declined the invitation.
Constant indicating that this participant has been sent an invitation.
Constant indicating that this participant has accepted the invitation and is joined.
Constant indicating that this participant joined a multiplayer game and subsequently left.
Return the name to display for this participant. If the identity of the player is unknown, this will be a generic handle to describe the player.
Loads the display name for this participant into the provided CharArrayBuffer
.
dataOut | The buffer to load the data into. |
---|
Returns the URI of the hi-res image to display for this participant. If the identity of the player is unknown, this will be null. It may also be null if the player simply has no image.
To retrieve the Image from the Uri
, use ImageManager
.
Returns the URI of the icon-sized image to display for this participant. If the identity of the player is unknown, this will be the automatch avatar icon image for the player. It may also be null if the player simply has no image.
To retrieve the Image from the Uri
, use ImageManager
.
Returns the ID of this participant. Note that this is only valid for use in the current multiplayer room: a participant will not have the same ID across multiple rooms.
Retrieve the status of this participant. Possible values are STATUS_INVITED
,
STATUS_JOINED
, STATUS_DECLINED
, or STATUS_LEFT
.
Retrieves the connected status of the participant. If true indicates that participant is in the connected set of the room.