我目前正在为一款纸牌游戏编写一个J2ME应用程序,该游戏从菜单屏幕开始,可以选择多种不同的纸牌游戏。
此菜单屏幕是一个表单,我需要知道如何导航到游戏的新表单。
public void commandAction(Command c, Displayable s) {
if(c.equals(exitComm)){
}
else if(c.equals(gameComm))
{
//start the queen game...create instance of QueensForm
QueensForm form = new QueensForm(null, "Queens");
display.setCurrent(form);
System.out.println("pressed play");
}
现在应用程序编译并运行,但是当点击播放按钮时会发生错误并且它表示问题出在行display.setCurrent(form);
我不确定问题并且想知道是否有人可以帮助我对此进行排序或建议一种更好的方式来浏览应用程序中的各种表单。