Hello GeoMobile,
For getting the rankers with offset in leaderboard, you need to specify the offset in leaderbord call. For your convenience, I have added the code snippet:
String gameName = "<Enter_your_game_name>";
int max = 10;
scoreBoardService.setPageOffset(0); // Next page your offset will be 11 and so on.
Game game = scoreBoardService.getTopNRankers(gameName,max);
System.out.println("Game Name is : "+game.getName());
for(int i = 0;i<game.getScoreList().size();i++)
System.out.println("userName is : " + game.getScoreList().get(i).getUserName());
System.out.println("score is : " + game.getScoreList().get(i).getValue());
System.out.println("Created On is :"+game.getScoreList().get(i).getCreatedOn());
System.out.println("scoreId is : " + game.getScoreList().get(i).getScoreId());
Let us know if it helps.
Himanshu Sharma