Reputation: 14453
I need to show the dialog with searching list while user pressing the button. How to do it with LWUIT?
Upvotes: 1
Views: 733
Reputation: 14453
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();
}
Upvotes: 1