About.java
上传用户:heyongping
上传日期:2022-07-01
资源大小:95k
文件大小:1k
- /*
- * 创建于 2009-12-04
- * 关于手机电话簿的简单介绍
- */
- package net.garrey.view;
- import javax.microedition.lcdui.Alert;
- import javax.microedition.lcdui.Image;
- /**
- * @作者 张三
- * 手机电话簿的介绍
- */
- public class About extends Alert{
- private Image icon=null;
- private final static String message="手机电话簿";
- public About(String title){
- super(title);
- setTimeout(FOREVER);
- try {
- icon=Image.createImage("/icon/garrey.png");
- setImage(icon);
- } catch (java.io.IOException x) {
- }
- this.setString(message);
- }
- }