?? 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 + -