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.
Asked
Active
Viewed 388 times
-1

aNi
- 1,359
- 11
- 17
-
1Why don't you test each of these methods !!!! – Sep 20 '11 at 05:14
-
You've asked two distinct questions here, without providing context to either. – Tim Post Sep 20 '11 at 11:01
-
Sorry, my bad. Actually it is somewhat related, that's why I asked. – aNi Sep 21 '11 at 05:39
1 Answers
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