📄 mbscopyright.java
字号:
package mobisutra;
import mobisutra.*;
import javax.microedition.lcdui.*;
public class MbsCopyright extends Form
implements CommandListener
{
public MbsCopyright()
{
super("关于性爱经典");
subForm = null;
StringItem stringitem = new StringItem(null, " 性爱经典 1.0\n ");
StringItem stringitem1 = new StringItem(null, "(c) 2002 Juergen Schwarz\nJuggle4Evr@gmx.de\nwww.geocities.com/juggle4evr1/mobisutra.htm\n ");
StringItem stringitem2 = new StringItem(null, "Based on Palmasutra for PalmOS, original idea copyright Palmfun, 2000, 2001.\n ");
StringItem stringitem3 = new StringItem(null, "DDW 汉化 2003.1.31");
append(stringitem);
append(stringitem1);
append(stringitem2);
append(stringitem3);
Command command = new Command("后退", 1, 0);
addCommand(command);
setCommandListener(this);
}
public void show(Displayable displayable)
{
subForm = displayable;
MbsGlobals.display.setCurrent(this);
}
public void commandAction(Command command, Displayable displayable)
{
String s = command.getLabel();
if(s == "后退")
MbsGlobals.display.setCurrent(subForm);
}
Displayable subForm;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -