I would like to display more than one(four) leaderboards if a button is clicked. Well, so that the user can chose which leaderboard he want to see. I'm using Google Play Services, is there any function to do that? At the moment I'm displaying one leaderboard like this:
else if(view.getId() == R.id.show_leaderboard){
startActivityForResult(Games.Leaderboards.getLeaderboardIntent(
getApiClient(), getString(R.string.int_id)),
1);
Where int_id is the leaderboard id. I guess I could use this code 4 times with the right id, but this would be a mess, right?