⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.java

📁 手机电话本 初学者
💻 JAVA
字号:
/*
 * Created on 2005-5-17
 */
package net.garrey.view;

import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.Image;

/**
 * @author Administrator
 * Written by Garrey. All rights reserved by Garrey.
 */
public class About extends Alert{
    
    private Image icon=null;
    private final static String message="此程序由Garrey编写,仅供大家在网上交流学习使用。\n"
        					            +"       http://garrey.blogbus.com        ";
    
    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);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -