About.java
上传用户:heyongping
上传日期:2022-07-01
资源大小:95k
文件大小:1k
源码类别:

J2ME

开发平台:

Java

  1. /*
  2.  * 创建于 2009-12-04
  3.  * 关于手机电话簿的简单介绍
  4.  */
  5. package net.garrey.view;
  6. import javax.microedition.lcdui.Alert;
  7. import javax.microedition.lcdui.Image;
  8. /**
  9.  * @作者 张三
  10.  * 手机电话簿的介绍
  11.  */
  12. public class About extends Alert{
  13.     private Image icon=null;
  14.     private final static String message="手机电话簿";
  15.     public About(String title){
  16.         super(title);
  17.         setTimeout(FOREVER);
  18.         try {
  19.         icon=Image.createImage("/icon/garrey.png");
  20.         setImage(icon);
  21.     } catch (java.io.IOException x) {
  22.     }
  23.         this.setString(message);
  24.     }
  25. }