views:

623

answers:

2

Hi, I am developing an application similar to email application. Whenever new message is received my notification service should indicate change to user...by updating icon, also, the notification service should continuosly listen to server for incoming events.

How do I achieve this?

I am developing in os version 4.5.

Please help.

Thank you.

+3  A: 

There is no ApplicationIndicator in RIM OS < 4.6 (see bb forum thread)

you have several options to notify the user (none of them is the indicator, unfortunately). you can:

  • play a sound
  • trigger the vibration
  • trigger a customizable notification (so the user can decide)
  • change the application icon
  • paint a text on the application icon
  • change the application title

how to show notification icon in v4.2 to v4.5 versions

And yes, to exchange data between two applications it's better to use GlobalEventListener

Max Gontar
Thanks Coldice, actually I want to know how can I transfer data between 2 apps, one is my own app. and other is notification app.Also,which api do I need to use for this? Notifications API or GlobalEvent Listener?
imMobile
Youre welcome, see update. I'm curioouse - what is this notification app like?
Max Gontar
Notification application , what i meant is, the application which will autorun on startup and will listen to events from server
imMobile
A: 

Hi,

If ApplicationIndicator is not available to OS 4.5 and lesser versions then how do googleTalk and twitter app can have such feature (message indicator on homescreen similar to new messages and missed call) with these versions.

There should be some other mechanism apart from ApplicationIndicator to implement such feature.

Please suggest.

Thanks, Akash.

Don't know which twitter app your are refering to, but Google Talk is a RIM application, which is how it does things the rest of us can't.
Richard