如何使用LWUIT显示带有搜索列表的对话框?

时间:2011-03-16 04:46:09

标签: list java-me lwuit

我需要在用户按下按钮时显示带搜索列表的对话框。如何用LWUIT做到这一点?

1 个答案:

答案 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();
  }