pyramidMIDlet.java
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. import javax.microedition.midlet.*;
  2. import javax.microedition.lcdui.*;
  3. import javax.microedition.lcdui.game.*;
  4. import javax.microedition.m3g.*;
  5. public class pyramidMIDlet extends MIDlet implements CommandListener{
  6.     private Command ExitCommand;
  7.     private Display d;
  8.     private pyramidCanvas myCanvas;
  9.     
  10.     public pyramidMIDlet(){
  11.         d = Display.getDisplay(this);
  12.         
  13.         ExitCommand = new Command("Exit", Command.EXIT, 0);
  14.         
  15.         myCanvas = new pyramidCanvas();
  16.         myCanvas.addCommand(ExitCommand);
  17.         myCanvas.setCommandListener(this);
  18.     }
  19.     
  20.     public void startApp() {
  21.         d.setCurrent(myCanvas);
  22.     }
  23.     
  24.     public void pauseApp() {
  25.         
  26.     }
  27.     
  28.     public void destroyApp(boolean unconditional) {
  29.         
  30.     }
  31.     public void commandAction(Command c, Displayable d){
  32.         notifyDestroyed();
  33.     }
  34.     
  35. }