1

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.

Michael Donohue
  • 11,776
  • 5
  • 31
  • 44
alanvabraham
  • 779
  • 2
  • 14
  • 25

3 Answers3

2

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

Community
  • 1
  • 1
BBdev
  • 4,898
  • 2
  • 31
  • 45
1

RIM has posted an article about running applications in background on their support forum:
Make a running UI application go to the background and resume in the foreground

Michael Donohue
  • 11,776
  • 5
  • 31
  • 44
Ashish Agarwal
  • 14,555
  • 31
  • 86
  • 125
0

You can use Alternate Entry Points to make your application run in the background. Check the link below for assistance

http://docs.blackberry.com/en/developers/deliverables/23567/Always_on_1380986_11.jsp

Farid Farhat
  • 2,300
  • 1
  • 16
  • 29