※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※MainPanelの修正
class MainPanel extends Panel implements ComponentListener {
private Label label;
private Button button;
MainPanel() {
setTitle("Start IApplication");
HTMLLayout layout = new HTMLLayout();
this.setLayoutManager(layout);
label = new Label("List Sample");
this.add(label);
layout.br();
button = new Button("Click");
this.add(button);
this.setComponentListener(this);
}
public void componentAction(Component source, int type, int param) {
switch(type){
case ComponentListener.BUTTON_PRESSED:
if (source == button){
label.setText("buttonを押した。");
}
break;
}
}
}
| << 前へ | 次へ >> |