com.google.android.gms.games.Player |
![]() |
Data interface for retrieving player information.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
long | CURRENT_XP_UNKNOWN | Constant indicating that the current XP total for a player is not known. | |||||||||
long | TIMESTAMP_UNKNOWN | Constant indicating that a timestamp for a player is not known. |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Retrieves the URI for loading this player's landscape banner image.
| |||||||||||
Retrieves the URI for loading this player's portrait banner image.
| |||||||||||
Loads the player's display name into the given
CharArrayBuffer . | |||||||||||
Retrieves the display name for this player.
| |||||||||||
Retrieves the URI for loading this player's hi-res profile image.
| |||||||||||
Retrieves the URI for loading this player's icon-size profile image.
| |||||||||||
Retrieves the timestamp at which this player last played a multiplayer game with the
currently signed in user.
| |||||||||||
Retrieves the player level associated information if any exists.
| |||||||||||
Retrieves the ID of this player.
| |||||||||||
Retrieves the timestamp at which this player record was last updated locally.
| |||||||||||
Retrieves the title of the player.
| |||||||||||
Loads the player's title into the given
CharArrayBuffer . | |||||||||||
Indicates whether this player has a hi-res profile image to display.
| |||||||||||
Indicates whether this player has an icon-size profile image to display.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Constant indicating that the current XP total for a player is not known.
Constant indicating that a timestamp for a player is not known.
Retrieves the URI for loading this player's landscape banner image. Returns null if the player has no landscape banner image.
To retrieve the Image from the Uri
, use ImageManager
.
Returns | |
---|---|
Uri |
The image URI for the player's landscape banner image, or null if the player has none. |
Retrieves the URI for loading this player's portrait banner image. Returns null if the player has no portrait banner image.
To retrieve the Image from the Uri
, use ImageManager
.
Returns | |
---|---|
Uri |
The image URI for the player's portrait banner image, or null if the player has none. |
Loads the player's display name into the given CharArrayBuffer
.
Parameters | |
---|---|
dataOut |
CharArrayBuffer :
The buffer to load the data into.
|
Retrieves the display name for this player.
Returns | |
---|---|
String |
The player's display name. |
Retrieves the URI for loading this player's hi-res profile image. Returns null if the player has no profile image.
To retrieve the Image from the Uri
, use ImageManager
.
Returns | |
---|---|
Uri |
The image URI for the player's hi-res profile image, or null if the player has none. |
Retrieves the URI for loading this player's icon-size profile image. Returns null if the player has no profile image.
To retrieve the Image from the Uri
, use ImageManager
.
Returns | |
---|---|
Uri |
The image URI for the player's icon-size profile image, or null if the player has none. |
Retrieves the timestamp at which this player last played a multiplayer game with the
currently signed in user. If the timestamp is not found, this method returns
TIMESTAMP_UNKNOWN
.
Returns | |
---|---|
long |
The timestamp (in ms since epoch) at which the player last played a multiplayer game with the currently signed in user. |
Retrieves the player level associated information if any exists. If no level information
exists for this player, this method will return null
.
Returns | |
---|---|
PlayerLevelInfo |
The PlayerLevelInfo associated with this player, if any.
|
Retrieves the ID of this player.
Returns | |
---|---|
String |
The player ID. |
Retrieves the timestamp at which this player record was last updated locally.
Returns | |
---|---|
long |
The timestamp (in ms since epoch) at which the player data was last updated locally. |
Retrieves the title of the player. This is based on the player's gameplay activity in apps using Google Play Games services. Note that not all players have titles, and that a player's title may change over time.
Returns | |
---|---|
String |
The player's title, or null if this player has no title.
|
Loads the player's title into the given CharArrayBuffer
.
Parameters | |
---|---|
dataOut |
CharArrayBuffer :
The buffer to load the data into.
|
Indicates whether this player has a hi-res profile image to display.
Returns | |
---|---|
boolean |
Whether the player has a hi-res profile image to display. |
Indicates whether this player has an icon-size profile image to display.
Returns | |
---|---|
boolean |
Whether the player has an icon-size profile image to display. |