notifications

Android Notification Bar Number

I've been able to successfully display the notification number count on the Android emulator. However, it doesn't display anything when I use it on an actual Android phone. Any suggestions on why there might be a difference? ...

Which "platform" should we use for a notifier-component?

Hi all We need to develop a notifier component. What it will do, is to scan a database at given intervals (say, every 15th minute), to see if any notifications needs to be sent out. We're running on Windows, and so we've been looking into either a Windows Service or the Windows Task Scheduler. Our biggest concern is the robustness of ...

android expanded notification view

I have an app that puts the date in the status bar, but in order to make it look decent, I have to use two notifications. This causes it to use two expanded notifications when you pull down the status bar. Is there any way to get rid of one of the expanded views(or both of them)? ...

validate iphone push notification token?

I've not yet implemented push notifications in my app. My understanding is that the app running on the device must request a token, then send this token to my server, and that my server must pass this token to Apple whenever I want to push a message to the device / app. Is a requested push token specific to the app, or do all apps on t...

Iphone Push php or certificate error ?

Hi all ! I have made an app using remote notifications, i've used the Apns certificate and his private key to create my cert-production.pem removing the passphrase. An another guy of my team works on php side. We have managed to use it during developpement, get the token and send a push using a payload. But after submission t the a...

Implementing an interactive notification in the status bar (Android)

Hi, I'd like to know how to disable the highlighting effect when the user clicks the notification in the status bar and furthermore, I'd like to allow the user to interact directly with the RemoteView I have placed in the notification by means of button pressing. I know this can be done as HTC's Sense has an ongoing notification while a...

Get new mails notification from GMail?

Is there an easy way to get a notification from Google when a Google Mail user gets a new mail? Read- /write support, etc. is not needed. I'm looking for solutions in C, Objective-C or C++. ...

Implement badge notification on my app

Hi I am new to iphone Notification. In my app, I am displaying RSS Feed contents and whenever changes happening in server side of RSS Feeds, then I want to show the notification on top of application icon with number badge and also this number should be based on number of feeds changed ( This is changes may be a Addition/Deletion/update...

Verifying a notification signature (PHP)

Hi, I need to validate a signature for a callback from ankoder.com who provide the following description: It is the URL-escaped string of Base64-encoded HMAC-SHA1 digest of your private key and the URL-unescaped message. $passkey = urlencode(base64_encode(hash_hmac('sha1', urldecode($str), $private_key, true))); They provide the fol...

Prevent new activity instance after clicking on notification

Hello, application (non-wanted) behavior - application is started, some text is put into text-box and notification is created through button action. user "clicks" the home button, application is "minimized", notification is available in bar user selects the notification and the application is "maximized" BUT - instead of the origi...

Android - java.lang.IllegalArgumentException: contentIntent required error caused by notification?

I have a service running that updates a notification in the notification bar when it recieves a message saying it has to be changed. However I get the following error sometimes when the notification is to be updated java.lang.IllegalArgumentException: contentIntent required Here is my code: Variable setup int icon = R.drawable.no...

applicationIconBadgeNumber - How to display with empty value ?

How to I make a red number indicators without any number inside it ? Or anyone have any ideas that help user know if the App is running on background or not ? Thanks for helping me Tung Do ...

SyncML 1.2 DS Server Alert Notification

Hello, probably this is not the best place for this but I don't know where else to look for help. I'm trying to implement a service to start server initiated synchronizations by using SyncML 1.2 SAN specification but I'm having problems when sending, can't receive anything. Here is my encoding, in case you may detect a problem that I ca...

Automatic email notifications based on date in django

I have to implement a way to send automatic notification emails based on a model DateFields. I'll put an example. I have a DateField with 2010-07-23 stored in it and I want django to send an email to a designated user when the current date reaches a week before (send it in 2010-07-16). Is there any way to accomplish this? ...

push notification not launch app

i can receive the push notification. But the iphone is in lock screen. if the new push notification receive. at that time, i unlock the screen, the app will launch automatically. if i want the app not to launch when i unlock the screen. how to do? Thank you. ...

How do I hook another applications events?

I'd like to hook the event that is triggered when an application is trying to notify you of something (when its icon background turns orange and starts flashing) so that I can create my own custom notifications (like getting a text message or email) For example I'd like to have an event triggered when I receive an instant message on my...

What's the best way to coordinate javascript clients to a single backend game?

What's the best method to use to notify javascript client's of changes that occur in a game asynchronously (i.e. moves made by other clients). As an example, assume a turn based board game. Should I just have the client poll the PHP backend every second or so for new moves, or is there a better way to send an asynchronous notification to...

Can I use Mailing list for this task?

I have a web app installed on many different platforms(different versions, different servers). What I want to accomplish: all team members mush receive email notification from any of these servers with some messages(exceptions, important messages etc) How can I do that? I'm afraid that I don't quite understand what does "Mailing list"...

Cancel UILocalNotification

Hello guys! I have a problem with my UILocalNotification. I am scheduling the notification with my method. - (void) sendNewNoteLocalReminder:(NSDate *)date alrt:(NSString *)title{ // some code ... UILocalNotification *localNotif = [[UILocalNotification alloc] init]; if (localNotif == nil) return; localNotif.fireDate = i...

How to tell if notification shade is pulled down in android

I have a program that creates a notification if the application is not running. To do this, I have used the following code: public void onWindowFocusChanged(boolean focus) { inFocus = focus; if (inFocus) {//If this activity is in focus, fills data and clears notifications fillData(); Notify.clear(); } ...