我似乎无法让我的 javame 程序中的对话框消失。我用过 dispose 但什么也没用。任何帮助。这是代码
Dialog d=new Dialog("Comment added");
Label lb=new Label(response);
d.setLayout(new BorderLayout());
d.addComponent(BorderLayout.CENTER,lb);
d.show();
d.dispose();