大家好我对Applets有疑问。我有一个游戏小程序,我想嵌入一个网页。但是我想在applet中添加一个“Start Screen”,它首先出现,并有一些参数按钮和一个开始按钮。按下开始按钮时应加载“游戏画面”。实施这个的最佳方法是什么?这是一个简单的单屏Applet作为示例。
public class AppletExample extends Applet implements ActionListener{
Button okButton;
Button cancelButton;
TextField _textField;
public void init(){
okButton = new Button("Press");
cancelButton = new Button("Cancel");
_textField = new TextField("Ready", 10);
okButton.addActionListener(this);
cancelButton.addActionListener(this);
add(okButton);
add(_textField);
add(cancelButton);
}
public void actionPerformed(ActionEvent arg0) {
if(arg0.getSource() == okButton){
_textField.setText("Running...");
}
else { _textField.setText("Cancelled");
}
}
}