RGBImageDemo.java
资源名称:J2ME&Game.rar [点击查看]
上传用户:gyyuli
上传日期:2013-07-09
资源大小:3050k
文件大小:1k
源码类别:
J2ME
开发平台:
Java
- package rgbimagedemo;
- import javax.microedition.lcdui.*;
- import javax.microedition.midlet.*;
- public class RGBImageDemo
- extends MIDlet
- implements CommandListener {
- private Display mDisplay;
- private SnowCrash mSnowCrash;
- public RGBImageDemo() {
- mSnowCrash = new SnowCrash();
- Command exitCommand = new Command("Exit", Command.EXIT, 0);
- mSnowCrash.addCommand(exitCommand);
- mSnowCrash.setCommandListener(this);
- mDisplay = Display.getDisplay(this);
- }
- public void startApp() {
- mDisplay.setCurrent(mSnowCrash);
- }
- public void pauseApp() {
- }
- public void destroyApp(boolean unconditional) {}
- // CommandListener method
- public void commandAction(Command c, Displayable s) {
- if (c.getCommandType() == Command.EXIT) {
- mSnowCrash.stop();
- notifyDestroyed();
- }
- }
- }