Android应用程序中的本地通知与cordova / phonegap

时间:2014-06-06 09:59:45

标签: android cordova

我做了一个像这样的本地通知:

/* local notification */
document.addEventListener('deviceready', function () {
    window.plugin.notification.local.add({
        id: 1,
        message: "test",
        title: "Hello !",
        icon: 'file://img/logo/true.png',
        sound: 'TYPE_NOTIFICATION'
    });
}, false);

但是有一个问题:声音是唯一发生的事件......

https://github.com/katzer/cordova-plugin-local-notifications我错过了什么?

0 个答案:

没有答案