我的J2ME编程联系(3)——Gauge

2008-02-23 09:54:56来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

/*
* gaugelet.Java
*
* Created on 2005年4月15日, 下午5:19
*/

import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;

/**
*
* @author Administrator
* @version
*/
public class gaugelet extends MIDlet implements CommandListener{

private Gauge aGauge;
private Form aForm;
private Command exitCommand;
private Command okCommand;
private Display aDisplay;
private Alert anAlert;

public gaugelet(){

aForm=new Form("GaugeTest");
exitCommand=new Command("EXIT",Command.EXIT,1);
okCommand=new Command("OK",Command.OK,1);
aGauge=new Gauge("gaugedisplay",true,100,50);
anAlert=new Alert("Value",null,null,AlertType.INFO);

aForm.addCommand(exitCommand);
aForm.addCommand(okCommand);
aForm.append(aGauge);
aForm.setCommandListener(this);

}
public void startApp() {

aDisplay=Display.getDisplay(this);
aDisplay.setCurrent(aForm);
}

public void pauseApp() {
}

public void destroyApp(boolean unconditional) {
}

public void commandAction(Command c,Displayable d){

String s="The Value is ";
int i;

if(c==exitCommand){

destroyApp(false);
notifyDestroyed();
}

else{

i=aGauge.getValue();
s =Integer.toString(i);
anAlert.setString(s);
aDisplay.setCurrent(anAlert,aForm);


}
}
}

上一篇: Hibernate的一对一关系
下一篇: [学习小记]Java的反射机制

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:配置PointBase

下一篇:Hibernate的一对一关系