Search code examples
eclipseblackberryjava-meblackberry-simulatorblackberry-jde

How to run BlackBerry application in Background


I am working on a BlackBerry Application which requires the application be running once its sent to the background also. I would really appreciate it if someone could guide me to any tutorials related to running background services in BlackBerry.


Solution

  • Background Application is a kind of process so you should extend Application instead of extending Uiapplication . In your main class implement all your code. You can also see this StackOverflow question for an example: Blackberry - Running Background Application