Interface LeaderboardAdapterItem<T>
-
- Type Parameters:
T
- type of the item
- All Known Implementing Classes:
LeaderboardEntry
,LeaderboardEntryTitle
,PlayerLeaderboardEntry
,QRCodeLeaderboardEntry
public interface LeaderboardAdapterItem<T>
Represents an item that can be rendered in the LeaderboardAdapter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description android.view.View
getView(android.content.Context context, android.view.View convertView, android.view.ViewGroup parent, T item)
Retrieves the view to render in the leaderboard
-
-
-
Method Detail
-
getView
android.view.View getView(android.content.Context context, android.view.View convertView, android.view.ViewGroup parent, T item)
Retrieves the view to render in the leaderboard- Parameters:
context
- application contextconvertView
- viewparent
- parentitem
- leaderboard item- Returns:
- view to display
-
-