import java.io.IOException;
import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.AlertType;
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.Image;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.ItemCommandListener;
import javax.microedition.lcdui.StringItem;
import javax.microedition.midlet.MIDlet;
public class StringItemDemo extends MIDlet implements CommandListener,
ItemCommandListener {
private Display display;
private Form mainForm;
private final static Command CMD_GO = new Command("Go",Command.ITEM,1);
private final static Command CMD_PRESS = new Command("Press",Command.ITEM,1);
//private final static Command CMD_SHOW = new Command("Show",Command.SCREEN,1);
private final static Command CMD_EXIT = new Command("Exit",Command.EXIT,1);
protected void destroyApp(boolean arg0) {
}
protected void pauseApp() {
}
protected void startApp() {
display = Display.getDisplay(this);
mainForm = new Form("String Item Demo");
mainForm.append("This is a simple label");
StringItem item = new StringItem("This is a StringItem label: ",
"This is the StringItems text");
mainForm.append(item);
item = new StringItem("Short label: ","text");
mainForm.append(item);
//超链接
item = new StringItem("Hyper-Link ","hyperlink",Item.HYPERLINK);
item.setDefaultCommand(CMD_GO);
item.setItemCommandListener(this);
mainForm.append(item);
item = new StringItem("Button ","Button",Item.BUTTON);
item.setDefaultCommand(CMD_PRESS);
//item.setDefaultCommand(CMD_SHOW);
item.setItemCommandListener(this);
mainForm.append(item);
mainForm.addCommand(CMD_EXIT);
mainForm.setCommandListener(this);
display.setCurrent(mainForm);
}
public void commandAction(Command c, Displayable d) {
destroyApp(false);
notifyDestroyed();
}
public void commandAction(Command c, Item item) {
if(c == CMD_GO) {
try {
String text = "Go to the URL...";
Image image = Image.createImage("/Icon.png");
Alert a = new Alert("URL",text,image,AlertType.INFO);
display.setCurrent(a);
} catch (IOException e) {
e.printStackTrace();
}
}else if(c == CMD_PRESS){
String text = "Do an action...";
Alert a = new Alert("Action",text,null,AlertType.INFO);
display.setCurrent(a);
}
// else if(c == CMD_SHOW){
// try {
// String text = "Go to the URL...";
// Image image = Image.createImage("/Icon.png");
// Alert a = new Alert("URL",text,image,AlertType.INFO);
// display.setCurrent(a);
// } catch (IOException e) {
// e.printStackTrace();
// }
// }
}
}
分享到:
相关推荐
96.java字符串反转案例.zip96.java字符串反转案例.zip96.java字符串反转案例.zip96.java字符串反转案例.zip96.java字符串反转案例.zip96.java字符串反转案例.zip96.java字符串反转案例.zip96.java字符串反转案例.zip...
89.java字符串方法.zip89.java字符串方法.zip89.java字符串方法.zip89.java字符串方法.zip89.java字符串方法.zip89.java字符串方法.zip89.java字符串方法.zip89.java字符串方法.zip89.java字符串方法.zip89.java字符...
95.java拼接字符串案例.zip95.java拼接字符串案例.zip95.java拼接字符串案例.zip95.java拼接字符串案例.zip95.java拼接字符串案例.zip95.java拼接字符串案例.zip95.java拼接字符串案例.zip95.java拼接字符串案例.zip...
90.java统计字符次数案例.zip90.java统计字符次数案例.zip90.java统计字符次数案例.zip90.java统计字符次数案例.zip90.java统计字符次数案例.zip90.java统计字符次数案例.zip90.java统计字符次数案例.zip90.java统计...
统计输入不同字符串个数.java
### Java字符串操作详解:String1.java程序分析 在Java编程语言中,字符串处理是一项非常重要的技能,无论是进行数据处理还是用户交互,字符串都是一个不可或缺的数据类型。本篇将基于提供的`String1.java`代码示例...
字符编码工具类CharacterEncodingFilter.java 字符编码工具类CharacterEncodingFilter.java 字符编码工具类CharacterEncodingFilter.java
JAVA字符串操作类CTool.java字符转换类,此类中收集Java编程中WEB开发常用到的一些工具。为避免生成此类的实例,构造方法被申明为private类型的。封装的功能:字符串从GBK编码转换为Unicode编码、对字符串进行md5...
getMaxElem.java 获取数组中的最大元素 incCapicity.java 演示StingBuffer的容量增长 SortDemo.java 排序示例 travelTwoDime.java 遍历二维数组 traversing.java 遍历一维数组 useStrBuf.java 使用...
[Java算法练习]-字符串长度.java
`Escape.java` 源代码可能是一个工具类,专门用于处理文本中的特殊字符,这些字符可能需要转义以便正确地存储、显示或传输。让我们深入探讨Java中的字符编码和解码以及可能在`Escape.java`中涉及的相关概念。 1. **...
java字符转换DealString.java代码下载,比如判断字符串是否为空,并删除首尾空格、GBK转换为ISO-8859-1、从srcCode转换为destCode、GBK转换为big5、替换非法字符、数字的金额表达式等。
JAVA 中文字符编码问题详解 在 JAVA 中,中文字符编码问题一直是让人头疼的问题,特别是在 WEB 应用中。网上的分析文章和解决方案都很多,但总是针对某些特定情况的。本文将详细解释 JAVA 中文字符编码问题的根源,...
给你一个下标从0开始的字符串details.java
${AnsiColor}: 用来设定字符的颜色 ${AnsiBackground}: 用来设定字符的背景色 ${application.version} 与MANIFEST.MF文件中相同的版本号(注意,自己打包的时候,如果配置文件中识别不到版本号,就会出现空值的现象)...