最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
我的J2ME编程练习(5)――Canvas
时间:2022-07-02 17:43:45 编辑:袖梨 来源:一聚教程网
的/*
* Canvaslet.java
*
* Created on 2005年4月18日, 下午9:41
*/
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
/**
*
* @author Administrator
* @version
*/
public class Canvaslet extends MIDlet implements CommandListener{
private Display aDisplay;
private MyCanvas myCanvas;
private Command okCommand;
private Command exitCommand;
private List aList;
private Font f;
public Canvaslet(){
okCommand=new Command("OK",Command.OK,1);
exitCommand=new Command("EXIT",Command.EXIT,1);
aList=new List("Font",Choice.EXCLUSIVE);
aList.append("Small",null);
aList.append("Medium",null);
aList.append("Large",null);
myCanvas=new MyCanvas();
aList.addCommand(okCommand);
aList.addCommand(exitCommand);
aList.setCommandListener(this);
}
public void startApp() {
aDisplay=Display.getDisplay(this);
aDisplay.setCurrent(aList);
}
public void pauseApp() {
相关文章
- 时空中的绘旅人天宇之间怎么玩 绘旅人天宇之间活动玩法介绍 12-25
- QQ2024年度报告怎么看 2024qq年度报告玩法介绍 12-25
- 归龙潮珠砂什么时候up 归龙潮红缘绮梦卡池介绍 12-25
- 王者荣耀S38赛季有什么更新 12-25
- 王者荣耀S38赛季有什么更新 王者荣耀S38赛季更新内容介绍 12-25
- 世界之外12.25有什么更新 世界之外12月25日更新内容介绍 12-25