?? about.java
字號(hào):
/*
* 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編寫(xiě),僅供大家在網(wǎng)上交流學(xué)習(xí)使用。\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);
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -