📄 about.java
字号:
/*
* About.java
*
* Created on 2007年3月11日, 下午4:04
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package net.bccn.account.ui;
import javax.microedition.lcdui.Alert;
import javax.microedition.lcdui.AlertType;
/**
*
* @author hadeslee
*/
public class About extends Alert{
private static About ab;
/** Creates a new instance of About */
private About() {
super("关于");
initWindow();
}
private void initWindow(){
this.setString("这是一款手机版的记账小程序,可以" +
"帮您记记日常的小账目,随身随地让您明明白白消费" +
",并含有统计功能,可以按日期统计,也可以按消费种类" +
"统计,还可以附带写一些日记." +
"\n作者:千里冰封\n日期:2007年3月11日");
this.setType(AlertType.INFO);
this.setTimeout(Alert.FOREVER);
}
public static About getIntstance(){
if(ab==null){
ab=new About();
}
return ab;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -