iOSDev
iOSDev

Reputation: 3617

Notification Service for Blackberry OS 4.5 application

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.

I am developing in os version 4.5.

Upvotes: 1

Views: 2061

Answers (1)

Maksym Gontar
Maksym Gontar

Reputation: 22775

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

Upvotes: 3

Related Questions