いくつかのボタンがあるダイアログを作成します。
そのボタンのいずれかのアクションで、ダイアログを終了したい。
コマンドを追加したくありません。
助けてください。
これが私のコードです。
Form form = (Form) createContainer("/theme", "MYDialog1");
Container container = (Container) findByName("Container", form);
button = new Button(new Command("Close"),i));
try
{
button.setUIID("LabelButton");
}
catch (Exception exception)
{
exception.printStackTrace();
}
button.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent evt)
{
??????
}
});
container.addComponent(button);
Dialog.show("", form, null);