3

I want to use standard alerts dialog (as LCDUI) in my LWUIT app: lcdui Alert javadocs

How can I call this methods from LWUIT form?

gnat
  • 6,213
  • 108
  • 53
  • 73
Tim
  • 1,606
  • 2
  • 20
  • 32

1 Answers1

3

LWUIT's 1.5's Display has the method showNativeScreen.

I wouldn't recommend doing this though, it would probably cause some issues.

To return to LWUIT just show a Form.

Shai Almog
  • 51,749
  • 5
  • 35
  • 65
  • I tried using this method but I get the following exception when i am trying to dismiss the alert on click of a button.: "java.lang.IllegalArgumentException: Current Displayable is an Alert" – SoH Aug 30 '12 at 13:55