首页 | 联系我们 | 叶凡网络官方QQ群:323842844
游客,欢迎您! 请登录 免费注册 忘记密码
您所在的位置:首页 > 开发语言 > Java开发 > 正文

StringItem练习例题

作者:cocomyyz 来源: 日期:2013-07-25 02:11:58 人气:2 加入收藏 评论:0 标签:java j2me

package com.brj.test;

import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.StringItem;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;

/**
* StringItem练习例题
* @author Administrator
*
*/
public class StringItemTest extends MIDlet implements CommandListener {
private Display display;
private Command exit;
private Form mainFace;
private StringItem plain;//普通的
private StringItem button;//按钮状的
private StringItem hyperLink;//超级链接型的

public StringItemTest() {
  display = Display.getDisplay(this);
  exit = new Command("Exit", Command.EXIT, 0);
  mainFace = new Form("");
  plain = new StringItem("plain", "plain", Item.PLAIN);
  button = new StringItem("button", "button",Item.BUTTON);
  hyperLink = new StringItem("hyperLink", "hyperLink", Item.HYPERLINK);
}

protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
  // TODO Auto-generated method stub

}

protected void pauseApp() {
  // TODO Auto-generated method stub

}

protected void startApp() throws MIDletStateChangeException {
  mainFace.addCommand(exit);
  mainFace.append(plain);
  mainFace.append(button);
  mainFace.append(hyperLink);
  mainFace.setCommandListener(this);
  display.setCurrent(mainFace);
}

public void commandAction(Command c, Displayable d) {
  if(c == exit){
   try {
    this.destroyApp(false);
   } catch (MIDletStateChangeException e) {
    e.printStackTrace();
   }
   this.notifyDestroyed();
  }
}

}


本文网址:http://www.mingyangnet.com/html/java/124.html
读完这篇文章后,您心情如何?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
上一篇: ImageItem用法例题
更多>>网友评论
发表评论
编辑推荐
  • 没有资料