我需要在用户按下按钮时显示带搜索列表的对话框。如何用LWUIT做到这一点?
答案 0 :(得分:1)
见link。这里明确说明如何在Form
中执行此操作。你必须对Dialog
做同样的事情。单击按钮时显示Dialog
。因此,您已为此按钮添加actionListener
。见这个样本,
Button button = new Button("Button");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
Dialog dialog = new Dialog();
// Do here for searching list. Refer that link.
dialog.show();
}