siraj
siraj

Reputation: 461

Android - Notification manager

I have an application in which users logged in and their details are stored in a database.I have seen many examples of notification manager sending notifications to the same user itself.What i need now is suppose a user sent a message to his team leader,Team leader have to view this as notification in his status bar immediately after the message is sent.Thanks in Advance!!!

Upvotes: 0

Views: 424

Answers (1)

Jordi Coscolla
Jordi Coscolla

Reputation: 1066

You must use a push notification system, in android you can do it by using the C2DM (Android Cloud to Device Messaging Framework). This is the way that google chat, gmail works to deliver the notifications. Another point C2DM is only available from the API 8 (android 2.2)

Upvotes: 3

Related Questions