amit
amit

Reputation: 169

How to send an application to the background?

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?

Upvotes: 0

Views: 361

Answers (1)

Manjoor
Manjoor

Reputation: 4199

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.

Upvotes: 4

Related Questions