1

I've created an application with lwuit on java-me, however, each time the user receives a phone call the applications is minimized and when the user restores it, the first Form is shown again (a splash form). How can I avoid the application from starting again?

diegueus9
  • 29,351
  • 16
  • 62
  • 74
Julian
  • 702
  • 4
  • 14

1 Answers1

0

Try overriding onHideNotify() and onShowNotify(), In hideNotify, store the last shown form to a variable and display that in onShowNotify()

Azlam
  • 2,052
  • 3
  • 24
  • 28