views:

63

answers:

1

I wrote a hello world application. I want it so when the close button is pressed, the application remains running in the background. How can I do that?

+4  A: 

This discussion might help you. (If you are programming for blackberry):

To put an application in the background call Application.requestBackground(), possibly as mentioned in the onClose() method.

Manjoor
It's helpful to summarize the relevant part of a link here
Michael Mrozek