displayable1.java~5~

来自「物体做抛物线运动是游戏中基本运动物理模型之一! 在PC游戏中可以由重力公式 轻易」· JAVA~5~ 代码 · 共 55 行

JAVA~5~
55
字号
package paowuxian;

import javax.microedition.lcdui.*;
import java.io.*;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2005</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

public class Displayable1 extends Canvas implements CommandListener {

  private Image imgWu=null;
  private  int x,y;
  public Displayable1() {
    try {
      imgWu = Image.createImage("/images/paodan.png");
    }
    catch (IOException ex) {
    }


    try {
      jbInit();
    }
    catch(Exception e) {
      e.printStackTrace();
    }
  }

  private void jbInit() throws Exception {
    // Set up this Displayable to listen to command events
    setCommandListener(this);
    // add the Exit command
    addCommand(new Command("Exit", Command.EXIT, 1));
  }

  public void commandAction(Command command, Displayable displayable) {
    /** @todo Add command handling code */
    if (command.getCommandType() == Command.EXIT) {
// stop the MIDlet
      MIDlet1.quitApp();
    }
  }

  protected void paint(Graphics g) {

  }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?