⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 yue.java

📁 j2me 手机拼图源码
💻 JAVA
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package yuan;import javax.microedition.midlet.*;import javax.microedition.lcdui.*;import java.io.*;/** * @author YUANYUEXIANG */public class yue extends MIDlet implements CommandListener {    public static yue instance;    public static Display m_dis;    public yue()    {    instance=this;    m_dis=Display.getDisplay(this);    }    public void startApp() {    Form f;    f=new Form("指南");    Image image=null;    try{            image=Image.createImage("/yuan/Java.png");    }        catch(Exception e)    {}    ImageItem ii=new ImageItem("\n\n",image,Item.LAYOUT_CENTER,"图片",Item.PLAIN);    f.append(ii);        try{m_dis.setCurrent(f);    Thread.sleep(2500);        }    catch(Exception e)    {}    stfm fm=new stfm();    m_dis.setCurrent(fm);    }    public void pauseApp() {    }    public void destroyApp(boolean unconditional) {    }    public static void quitApp()    {        instance.destroyApp(true);        instance.notifyDestroyed();        instance=null;    }    public static void game()    {    ca1 ca=new ca1();    m_dis.setCurrent(ca);    }        public void commandAction(Command c,Displayable s)    {        }    }

⌨️ 快捷键说明

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