📄 progressui.java
字号:
package ui;
import javax.microedition.lcdui.*;
import model.*;
public class ProgressUI extends Form implements CommandListener{
private HttpHandler httphandler = null;
private static Command exitCommand = new Command("返回",Command.BACK, 1);
/** Creates a new instance of ProgressUI */
public ProgressUI(String title,HttpHandler httphandler) {
super(title);
this.httphandler = httphandler;
this.append("正在连接服务器,请稍候...");
this.addCommand(exitCommand);
this.setCommandListener(this);
}
public void commandAction(Command cmd,Displayable displayable){
if(cmd == exitCommand){
httphandler.stop();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -