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

📄 circumgyrate.java

📁 一个基于j2me MIDP1.0的图片翻转的源代码
💻 JAVA
字号:

//package com.circumgyrate;    
   
import javax.microedition.lcdui.*;   
import javax.microedition.midlet.*;   
   
/**  
 * <P>Title: </P>  
 * <P>Description: </P>  
 * <P>Copyright: Copyright (c) 2004</P>  
 * <P>Company: </P>  
 * @author not attributable  
 * @version 1.0  
 */   
   
public class circumgyrate   
    extends MIDlet {   
  private Display display;   
  private ViewCanvas canvas;   
   
  public circumgyrate() {   
    super();   
    display = Display.getDisplay(this);   
    canvas = new ViewCanvas(this);   
  }   
   
  protected void startApp() throws MIDletStateChangeException {   
    display.setCurrent(canvas); // 设置显示画布对象    
  }   
   
  protected void pauseApp() {   
   
  }   
   
  protected void destroyApp(boolean arg0) throws MIDletStateChangeException {   
   
  }   
   
  public void exitMIDlet() {   
    try {   
      destroyApp(true);   
    }   
    catch (MIDletStateChangeException e) {   
    }   
    notifyDestroyed();   
  }   
   
}   

⌨️ 快捷键说明

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