程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 我的J2ME編程聯系(3)——Gauge

我的J2ME編程聯系(3)——Gauge

編輯:關於JAVA

/* * 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); } }}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved