canvas_for
شنبه 12 آبان 1386, 16:27 عصر
import javax.microedition.lcdui.*;
public class MIDPCanvas extends Canvas implements CommandListener {
public MIDPCanvas() {
try {
setCommandListener(this);
addCommand(new Command("Exit", Command.EXIT, 1));
} catch(Exception e) {
e.printStackTrace();
}
}
public void paint(Graphics g) {
g.drawString("Sample Text",0,0,Graphics.TOP|Graphics.LEFT);
}
protected void keyPressed(int keyCode) {
}
protected void keyReleased(int keyCode) {
}
protected void keyRepeated(int keyCode) {
}
protected void pointerDragged(int x, int y) {
}
protected void pointerPressed(int x, int y) {
}
protected void pointerReleased(int x, int y) {
}
public void commandAction(Command command, Displayable displayable) {
if ( command.getCommandType()==Command.EXIT)
notifyDestroyed();
}
}
من اگه بخواهم برنامه را پایان بدهم باید چی کار کنم؟
notifyDestroyed();
در اینجای برنامه جواب نمی ده
public class MIDPCanvas extends Canvas implements CommandListener {
public MIDPCanvas() {
try {
setCommandListener(this);
addCommand(new Command("Exit", Command.EXIT, 1));
} catch(Exception e) {
e.printStackTrace();
}
}
public void paint(Graphics g) {
g.drawString("Sample Text",0,0,Graphics.TOP|Graphics.LEFT);
}
protected void keyPressed(int keyCode) {
}
protected void keyReleased(int keyCode) {
}
protected void keyRepeated(int keyCode) {
}
protected void pointerDragged(int x, int y) {
}
protected void pointerPressed(int x, int y) {
}
protected void pointerReleased(int x, int y) {
}
public void commandAction(Command command, Displayable displayable) {
if ( command.getCommandType()==Command.EXIT)
notifyDestroyed();
}
}
من اگه بخواهم برنامه را پایان بدهم باید چی کار کنم؟
notifyDestroyed();
در اینجای برنامه جواب نمی ده