我正在开发Android游戏,通过扩展视图类。我通过研究OpenFeint网站上提供的教程来集成OpenFeint(http://support.openfeint.com/dev/getting-started-with-of-android-1-10-2-integrate-openfeint-in - 你的游戏/),但我无法在我的应用程序中添加排行榜功能。我怎么能这样做?
我的游戏课程是这样的:
公共类GameActivity扩展了Activity {
Intent i;
Grapic g;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(new Grapic(this));
和Grapic
是一个扩展视图的类,以及使用触摸事件完成评分的地方。
答案 0 :(得分:2)
@Override
public void onFinish()
{
new Achievement("123456").unlock(new Achievement.UnlockCB () {
@Override
public void onFailure(String exceptionMessage) {
Toast.makeText( getContext(),"Error (" + exceptionMessage + ") unlocking achievement.", Toast.LENGTH_SHORT).show();
((Activity) getContext()).setResult(Activity.RESULT_CANCELED);
((Activity) getContext()).finish();
}
@Override
public void onSuccess(boolean newUnlock) {
// TODO Auto-generated method stub
((Activity) getContext()).setResult(Activity.RESULT_OK);
((Activity) getContext()).finish();
}
});
long scoreValue = Long.parseLong(nit) ;
Score s = new Score(scoreValue, null); // Second parameter is null to indicate that custom display text is not used.
Leaderboard l = new Leaderboard("234567");
s.submitTo(l, new Score.SubmitToCB() {
@Override public void onSuccess(boolean newHighScore) { // sweet, score was posted
((Activity) getContext()).setResult(Activity.RESULT_OK);
((Activity) getContext()).finish();
}
@Override public void onFailure(String exceptionMessage) {
Toast.makeText(((Activity) getContext()), "Error (" + exceptionMessage + ") posting score.", Toast.LENGTH_SHORT).show();
((Activity) getContext()).setResult(Activity.RESULT_CANCELED);
((Activity) getContext()).finish();
}
});
handler.post(new Runnable() {
public void run() {
Intent i=new Intent(new Intent(getContext(),Androidfacebook.class));
i.putExtra("aman", nit);
context.startActivity(i);
}});
}