3
我正在使用this cordova插件並想知道是否可以使本地通知變得粘滯/不可移動?如何在android sticky上製作cordova本地通知
我正在使用this cordova插件並想知道是否可以使本地通知變得粘滯/不可移動?如何在android sticky上製作cordova本地通知
這並沒有那麼糟糕。只需設置本地選項 「正在進行:真」 中的插件:
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