I'm trying to add a callback function on the Cordova statusbar notification plugin in Phonegap for Android.
The basic idea is that when the user clicks on the notification, the program starts and goes to a specific page.
I saw in the notification.js file some options with onclick, onerror, onclose and onshow.
I've changed the constructor to:
NotificationMessenger.prototype.notify = function(title, options){
if (window.Notification) {
this.activeNotification = new window.Notification(title, options);
}
}
So now I can call the notify function:
window.plugins.statusBarNotification.notify("Test",{
body: "message",
onclick: function () {
window.weblogger.i("Test message");
}
});
The problem is that I'm not getting the test message in my Logcat. Does someone knows what I need to do, to get the callback function to work?