如何在 android 上设置 cordova 本地通知
How to make cordova local notification on android sticky
我正在使用 this cordova 插件,想知道是否可以发出本地通知 sticky/non-removable?
还不错。只需在插件中设置本机选项"ongoing: true":
scheduleActiveAlarm = function () {
cordova.plugins.notification.local.schedule({
id: 1,
text: 'Test text',
ongoing: true
});
};
https://github.com/katzer/cordova-plugin-local-notifications/wiki/04.-Scheduling
我正在使用 this cordova 插件,想知道是否可以发出本地通知 sticky/non-removable?
还不错。只需在插件中设置本机选项"ongoing: true":
scheduleActiveAlarm = function () {
cordova.plugins.notification.local.schedule({
id: 1,
text: 'Test text',
ongoing: true
});
};
https://github.com/katzer/cordova-plugin-local-notifications/wiki/04.-Scheduling