Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.