-1

In Lwuit Dialogs, I have seen .show() , .showDialog() , .showModeless() and .showPacked(String, boolean) .
What are the difference between these. And when I use a dialog, until the dialog goes the background process not running. Is there any solution for that.

aNi
  • 1,359
  • 11
  • 17

1 Answers1

2

Look at the Dialog javadoc. Here clearly described what they are and where it will be use.

bharath
  • 14,283
  • 16
  • 57
  • 95
  • I think he means that the dialog blocks execution. Modal dialogs block execution which means the line after show/showModal etc. will not run until the dialog is dismissed. He might be interested to try modless dialogs based on his use cases. – Shai Almog Sep 22 '11 at 08:14