• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java OnLeaderboardScoresLoadedListener类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener的典型用法代码示例。如果您正苦于以下问题:Java OnLeaderboardScoresLoadedListener类的具体用法?Java OnLeaderboardScoresLoadedListener怎么用?Java OnLeaderboardScoresLoadedListener使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



OnLeaderboardScoresLoadedListener类属于com.google.android.gms.games.leaderboard包,在下文中一共展示了OnLeaderboardScoresLoadedListener类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: MainActivity

import com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener; //导入依赖的package包/类
public MainActivity() {
	aHelper = new GameHelper(this);
	aHelper.enableDebugLog(true, "MYTAG");

	// create a listener for getting raw data back from leaderboard
	theLeaderboardListener = new OnLeaderboardScoresLoadedListener() {

		@Override
		public void onLeaderboardScoresLoaded(int statusCode,
				LeaderboardBuffer leaderboard, LeaderboardScoreBuffer scores) {

			for (int i = 0; i < scores.getCount(); i++) {
				System.out.println(scores.get(i)
						.getScoreHolderDisplayName()
						+ " : "
						+ scores.get(i).getDisplayScore());
			}
		}
	};
}
 
开发者ID:bitbrain,项目名称:plox,代码行数:21,代码来源:MainActivity.java


示例2: MainActivity

import com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener; //导入依赖的package包/类
public MainActivity() {
	aHelper = new GameHelper(this);
	aHelper.enableDebugLog(true, "MYTAG");

	// create a listener for getting raw data back from leaderboard
	theLeaderboardListener = new OnLeaderboardScoresLoadedListener() {

		@Override
		public void onLeaderboardScoresLoaded(int statusCode,
				LeaderboardBuffer leaderboard, LeaderboardScoreBuffer scores) {
			System.out.println("In call back");

			for (int i = 0; i < scores.getCount(); i++) {
				System.out.println(scores.get(i)
						.getScoreHolderDisplayName()
						+ " : "
						+ scores.get(i).getDisplayScore());
			}
		}
	};
}
 
开发者ID:bitbrain,项目名称:acid-snake,代码行数:22,代码来源:MainActivity.java


示例3: loadMoreScores

import com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener; //导入依赖的package包/类
@Deprecated
public final void loadMoreScores(final OnLeaderboardScoresLoadedListener paramOnLeaderboardScoresLoadedListener, LeaderboardScoreBuffer paramLeaderboardScoreBuffer, int paramInt1, int paramInt2)
{
  this.te.a(new a.c()
  {
    public void a(Leaderboards.LoadScoresResult paramAnonymousLoadScoresResult)
    {
      int i = paramAnonymousLoadScoresResult.getStatus().getStatusCode();
      paramOnLeaderboardScoresLoadedListener.onLeaderboardScoresLoaded(i, paramAnonymousLoadScoresResult.getLeaderboard(), paramAnonymousLoadScoresResult.getScores());
    }
  }
  , paramLeaderboardScoreBuffer, paramInt1, paramInt2);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:14,代码来源:GamesClient.java


示例4: loadPlayerCenteredScores

import com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener; //导入依赖的package包/类
@Deprecated
public final void loadPlayerCenteredScores(final OnLeaderboardScoresLoadedListener paramOnLeaderboardScoresLoadedListener, String paramString, int paramInt1, int paramInt2, int paramInt3)
{
  this.te.b(new a.c()
  {
    public void a(Leaderboards.LoadScoresResult paramAnonymousLoadScoresResult)
    {
      int i = paramAnonymousLoadScoresResult.getStatus().getStatusCode();
      paramOnLeaderboardScoresLoadedListener.onLeaderboardScoresLoaded(i, paramAnonymousLoadScoresResult.getLeaderboard(), paramAnonymousLoadScoresResult.getScores());
    }
  }
  , paramString, paramInt1, paramInt2, paramInt3, false);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:14,代码来源:GamesClient.java


示例5: loadTopScores

import com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener; //导入依赖的package包/类
@Deprecated
public final void loadTopScores(final OnLeaderboardScoresLoadedListener paramOnLeaderboardScoresLoadedListener, String paramString, int paramInt1, int paramInt2, int paramInt3)
{
  this.te.a(new a.c()
  {
    public void a(Leaderboards.LoadScoresResult paramAnonymousLoadScoresResult)
    {
      int i = paramAnonymousLoadScoresResult.getStatus().getStatusCode();
      paramOnLeaderboardScoresLoadedListener.onLeaderboardScoresLoaded(i, paramAnonymousLoadScoresResult.getLeaderboard(), paramAnonymousLoadScoresResult.getScores());
    }
  }
  , paramString, paramInt1, paramInt2, paramInt3, false);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:14,代码来源:GamesClient.java


示例6: incrementScore

import com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener; //导入依赖的package包/类
/**
 * Increments current score to leaderboard
 * @param pLeaderboard
 * @param pScore
 */
public void incrementScore(final String pLeaderboard, final long pScore){
	if(isSignedIn() == false)
		return;
	final String playerId = getGamesClient().getCurrentPlayer().getPlayerId();
	//Toast.makeText(this, "increment " + playerId, Toast.LENGTH_LONG).show();
	getGamesClient().loadPlayerCenteredScores(new OnLeaderboardScoresLoadedListener() {
		@Override
		public void onLeaderboardScoresLoaded(int arg0, LeaderboardBuffer arg1, LeaderboardScoreBuffer arg2) {
			Iterator <LeaderboardScore> it =arg2.iterator();
			//Toast.makeText(ActivityBaseGameLeaderboard.this, "on score loaded", Toast.LENGTH_LONG).show();
			if(it.hasNext() == false){
				//Toast.makeText(ActivityBaseGameLeaderboard.this, "first submit", Toast.LENGTH_LONG).show();
				submitScore(pLeaderboard, pScore);
				return;
			}
			while(it.hasNext()){
				LeaderboardScore lbScore = it.next();
				long score = lbScore.getRawScore();
				//Toast.makeText(ActivityBaseGameLeaderboard.this, score + " " + lbScore.getScoreHolder().getPlayerId(), Toast.LENGTH_LONG).show();
				if(lbScore.getScoreHolder().getPlayerId().equals(playerId)){
					submitScore(pLeaderboard, pScore + score);
				}
			}
		}
	}, pLeaderboard, LeaderboardVariant.TIME_SPAN_ALL_TIME, LeaderboardVariant.COLLECTION_PUBLIC, 1);
}
 
开发者ID:laurion,项目名称:wabbit-client,代码行数:32,代码来源:GameHelper.java



注:本文中的com.google.android.gms.games.leaderboard.OnLeaderboardScoresLoadedListener类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java AttributeUpdates类代码示例发布时间:2022-05-22
下一篇:
Java Cas30ServiceTicketValidator类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap