tags:

views:

74

answers:

1

I want my application according to some event, it comes to the background and light up the screen so the user notice that the blackberry has something.

+3  A: 

You can use the Backlight API like this: Backlight.enable(true, timeInMs)

Edit: you can even add a vibration with Alert.startVibrate(timeInMs)

Orr Matarasso