资源预览内容
第1页 / 共2页
第2页 / 共2页
亲,该文档总共2页全部预览完了,如果喜欢就下载吧!
资源描述
*TestMID/* To change this template, choose Tools | Templates* and open the template in the editor.*/import javax.microedition.lcdui.Command;import javax.microedition.lcdui.CommandListener;import javax.microedition.lcdui.Display;import javax.microedition.lcdui.Displayable;import javax.microedition.lcdui.TextBox;import javax.microedition.lcdui.TextField;import javax.microedition.midlet.*;/* author Administrator*/public class TestMID extends MIDlet implements CommandListener Display ds;TextBox textbox;public TestMID()ds=Display.getDisplay(this);textbox=new TextBox(游戏,30,TextField.ANY);Command c1=new Command(退出,Command.EXIT,2);Command c2=new Command(选择,Command.SCREEN,2);Command c3=new Command(开始,Command.SCREEN,2);Command c4=new Command(暂停,Command.SCREEN,2);textbox.addCommand(c1);textbox.addCommand(c2);textbox.addCommand(c3); textbox.addCommand(c4);textbox.setCommandListener(this);ds.setCurrent(textbox);public void startApp() public void pauseApp() public void destroyApp(boolean unconditional) public void commandAction(Command c, Displayable d) throw new UnsupportedOperationException(Not supported yet.);
收藏 下载该资源
网站客服QQ:2055934822
金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号