Search code examples
listjava-melwuit

How to show dialog with searching list using LWUIT?


I need to show the dialog with searching list while user pressing the button. How to do it with LWUIT?


Solution

  • See this link. Here clearly said how to do this in the Form. Same thing you have to do on the Dialog. Show the Dialog while clicking the button. So you have add the actionListener for this button. See this sample,

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