📄 about.java
字号:
package npc7776;
import javax.microedition.lcdui.*;
public class about extends Form implements CommandListener{
private Command cmdBack = null;
private planemain mainScreen = null;
public about(planemain m) {
super("关于");
mainScreen = m ;
cmdBack = new Command("返回",Command.BACK,1);
this.addCommand(cmdBack);
this.setCommandListener(this);
this.append("开发者");
this.append("写上名字");
}
public void commandAction(Command c,Displayable d){
if (c == cmdBack){
mainScreen.goBack();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -