我正在通过扩展一个带视图的类在 Android 中开发游戏。我通过研究 OpenFeint 网站 url 上提供的教程将 OpenFeint 集成到其中(http://support.openfeint.com/dev/getting-started-with-of-android-1-10-2-integrate-openfeint-in -your-game/),但我无法在我的应用程序中添加排行榜功能。我怎样才能做到这一点?
我的游戏课是这样的:
公共类 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
是一个扩展视图并且通过触摸事件完成评分的类。