?? hellocanvas.java
字號:
import javax.microedition.lcdui.*;import java.io.*;public class HelloCanvas extends Canvas{ private Image image; public HelloCanvas() { } public void paint(Graphics g) { g.setColor(0x00000000); g.fillRect(0, 0, this.getWidth(), this.getHeight()); try{ image = Image.createImage("/human.png"); }catch(java.io.IOException e){ System.out.println(e.getMessage()); } g.drawImage(image,getWidth()/2,getHeight()/2,g.VCENTER|g.HCENTER); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -