📄 helpscreen.java
字号:
package lckz;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
public class HelpScreen extends Form implements CommandListener {
public HelpScreen(String c) {
super("辅助说明");
append(c);
addCommand(new Command("返回",Command.BACK,1));
setCommandListener(this);
// TODO 自动生成构造函数存根
}
public void commandAction(Command c, Displayable d) {
// TODO 自动生成方法存根
Navigator.flow(c.getLabel());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -