江苏工信部网站备案查询,学校网站模板wordpress,广州地铁官网,外贸网站和普通网站HarmonyOS#xff08;十六#xff09;后台代理提醒 
简介 
随着生活节奏的加快#xff0c;我们有时会忘记一些重要的事情或日子#xff0c;所以提醒功能必不可少。应用可能需要在指定的时刻#xff0c;向用户发送一些业务提醒通知。例如购物类应用#xff0c;希望在指定时…HarmonyOS十六后台代理提醒 
简介 
随着生活节奏的加快我们有时会忘记一些重要的事情或日子所以提醒功能必不可少。应用可能需要在指定的时刻向用户发送一些业务提醒通知。例如购物类应用希望在指定时间点提醒用户有优惠活动。为满足此类业务诉求HarmonyOS提供后台代理提醒功能在应用退居后台或退出后计时和提醒通知功能被系统后台代理接管。 
后台代理提醒业务类型 
倒计时类基于倒计时的提醒功能适用于短时的计时提醒业务。日历类基于日历的提醒功能适用于较长时间的提醒业务。闹钟类基于时钟的提醒功能适用于指定时刻的提醒业务。 后台代理提醒就是由系统后台进程代理应用的提醒功能。后台代理提醒服务通过reminderAgentManager模块提供提醒定义、创建提醒、取消提醒等能力。 
后台代理提醒服务提供统一的提醒管理能力在应用退居后台或退出后计时和提醒通知功能被系统后台代理接管。 以新增一个9点的喝水提醒为例 
假设用户在8点新增这个喝水提醒应用根据用户设置的信息生成提醒实例并发布提醒。由后台代理提醒服务调用系统服务启动计时。 
到9点时系统唤醒后台代理提醒服务发布通知最终由通知服务触发桌面显示通知。 在整个流程中应用仅需 
使用reminderAgentManager模块的ReminderRequest类定义提醒实例使用reminderAgentManager模块的publishReminder接口发布提醒。 
无需关注计时和通知发布等功能如何实现。 
若是删除提醒流程需要使用reminderAgentManager模块的cancelReminder接口取消提醒若是修改提醒流程则需要先删除旧的提醒再新增新的提醒。 
给你的应用添加提醒 以闹钟应用为例实现提醒功能有以下前置条件 添加后台代理提醒使用权限。 module: {...requestPermissions: [{name: ohos.permission.PUBLISH_AGENT_REMINDER}]
}导入后台代理提醒reminderAgentManager模块将此模块命名为reminderAgent。 import reminderAgent from ohos.reminderAgentManager;如果是新增提醒实现步骤如下 用reminderAgent.ReminderRequest类定义提醒实例。 import reminderAgent from ohos.reminderAgentManager;
...export class ReminderService {public addReminder(alarmItem: ReminderItem, callback?: (reminderId: number)  void) {let reminder  this.initReminder(alarmItem);reminderAgent.publishReminder(reminder, (err, reminderId)  {if (callback ! null) {callback(reminderId);}});}private initReminder(item: ReminderItem): reminderAgent.ReminderRequestAlarm {return {reminderType: item.remindType,hour: item.hour,minute: item.minute,daysOfWeek: item.repeatDays,title: item.name,ringDuration: item.duration * Constants.DEFAULT_TOTAL_MINUTE,snoozeTimes: item.intervalTimes,timeInterval: item.intervalMinute,actionButton: [{title: 关闭,type: reminderAgent.ActionButtonType.ACTION_BUTTON_TYPE_CLOSE},...],wantAgent: {pkgName: globalThis.bundleName,abilityName: globalThis.abilityName},notificationId: item.notificationId,...}}...
}发布提醒。 import reminderAgent from ohos.reminderAgentManager;
...export class ReminderService {public addReminder(alarmItem: ReminderItem, callback?: (reminderId: number)  void) {let reminder  this.initReminder(alarmItem);reminderAgent.publishReminder(reminder, (err, reminderId)  {if (callback ! null) {callback(reminderId);}});}private initReminder(item: ReminderItem): reminderAgent.ReminderRequestAlarm {...}...
}如果需要删除提醒可以调用cancelReminder()接口实现。 
import reminderAgent from ohos.reminderAgentManager;
...export class ReminderService {public deleteReminder(reminderId: number) {reminderAgent.cancelReminder(reminderId);}...
}如果需要修改提醒则需要先进行旧提醒的删除再新增新的提醒。 
public async setAlarmRemind(alarmItem: AlarmItem) {let index  await this.findAlarmWithId(alarmItem.id);if (index ! Constants.DEFAULT_NUMBER_NEGATIVE) {this.reminderService.deleteReminder(alarmItem.id);} else {...}this.reminderService.addReminder(alarmItem, (newId)  {alarmItem.id  newId;...})
}参考 
更多后台代理提醒场景和相关知识请参考开发指南和API参考 
后台代理提醒ohos.reminderAgentManager (后台代理提醒) 文章转载自: http://www.morning.fbmjl.cn.gov.cn.fbmjl.cn http://www.morning.hmwjk.cn.gov.cn.hmwjk.cn http://www.morning.wyfpc.cn.gov.cn.wyfpc.cn http://www.morning.qmbtn.cn.gov.cn.qmbtn.cn http://www.morning.kwqwp.cn.gov.cn.kwqwp.cn http://www.morning.ymwny.cn.gov.cn.ymwny.cn http://www.morning.drspc.cn.gov.cn.drspc.cn http://www.morning.kxryg.cn.gov.cn.kxryg.cn http://www.morning.ttaes.cn.gov.cn.ttaes.cn http://www.morning.ktmnq.cn.gov.cn.ktmnq.cn http://www.morning.nkcfh.cn.gov.cn.nkcfh.cn http://www.morning.rbjf.cn.gov.cn.rbjf.cn http://www.morning.clccg.cn.gov.cn.clccg.cn http://www.morning.twhgn.cn.gov.cn.twhgn.cn http://www.morning.mrncd.cn.gov.cn.mrncd.cn http://www.morning.qbrdg.cn.gov.cn.qbrdg.cn http://www.morning.smdkk.cn.gov.cn.smdkk.cn http://www.morning.fykqh.cn.gov.cn.fykqh.cn http://www.morning.tmzlt.cn.gov.cn.tmzlt.cn http://www.morning.rlsd.cn.gov.cn.rlsd.cn http://www.morning.mrlkr.cn.gov.cn.mrlkr.cn http://www.morning.tmxtr.cn.gov.cn.tmxtr.cn http://www.morning.dtcsp.cn.gov.cn.dtcsp.cn http://www.morning.synkr.cn.gov.cn.synkr.cn http://www.morning.qbrs.cn.gov.cn.qbrs.cn http://www.morning.ddzqx.cn.gov.cn.ddzqx.cn http://www.morning.beijingzy.com.cn.gov.cn.beijingzy.com.cn http://www.morning.hptbp.cn.gov.cn.hptbp.cn http://www.morning.horihe.com.gov.cn.horihe.com http://www.morning.kzcfr.cn.gov.cn.kzcfr.cn http://www.morning.dtlnz.cn.gov.cn.dtlnz.cn http://www.morning.chbcj.cn.gov.cn.chbcj.cn http://www.morning.pybqq.cn.gov.cn.pybqq.cn http://www.morning.hkpyp.cn.gov.cn.hkpyp.cn http://www.morning.fsqbx.cn.gov.cn.fsqbx.cn http://www.morning.bmpjp.cn.gov.cn.bmpjp.cn http://www.morning.kwqcy.cn.gov.cn.kwqcy.cn http://www.morning.bfnbn.cn.gov.cn.bfnbn.cn http://www.morning.rhnn.cn.gov.cn.rhnn.cn http://www.morning.mpwgs.cn.gov.cn.mpwgs.cn http://www.morning.cniedu.com.gov.cn.cniedu.com http://www.morning.hkng.cn.gov.cn.hkng.cn http://www.morning.wqbfd.cn.gov.cn.wqbfd.cn http://www.morning.zrks.cn.gov.cn.zrks.cn http://www.morning.fpxyy.cn.gov.cn.fpxyy.cn http://www.morning.tgqzp.cn.gov.cn.tgqzp.cn http://www.morning.zybdj.cn.gov.cn.zybdj.cn http://www.morning.wljzr.cn.gov.cn.wljzr.cn http://www.morning.webife.com.gov.cn.webife.com http://www.morning.mhfbp.cn.gov.cn.mhfbp.cn http://www.morning.clkyw.cn.gov.cn.clkyw.cn http://www.morning.ryxdr.cn.gov.cn.ryxdr.cn http://www.morning.nlmm.cn.gov.cn.nlmm.cn http://www.morning.nrbcx.cn.gov.cn.nrbcx.cn http://www.morning.nyjgm.cn.gov.cn.nyjgm.cn http://www.morning.ndhxn.cn.gov.cn.ndhxn.cn http://www.morning.qbksx.cn.gov.cn.qbksx.cn http://www.morning.mbqyl.cn.gov.cn.mbqyl.cn http://www.morning.lhzqn.cn.gov.cn.lhzqn.cn http://www.morning.djwpd.cn.gov.cn.djwpd.cn http://www.morning.qpqwd.cn.gov.cn.qpqwd.cn http://www.morning.ygth.cn.gov.cn.ygth.cn http://www.morning.ruifund.com.gov.cn.ruifund.com http://www.morning.tplht.cn.gov.cn.tplht.cn http://www.morning.wmdbn.cn.gov.cn.wmdbn.cn http://www.morning.rdng.cn.gov.cn.rdng.cn http://www.morning.yrccw.cn.gov.cn.yrccw.cn http://www.morning.sflnx.cn.gov.cn.sflnx.cn http://www.morning.cpqqf.cn.gov.cn.cpqqf.cn http://www.morning.zymgs.cn.gov.cn.zymgs.cn http://www.morning.wpmqq.cn.gov.cn.wpmqq.cn http://www.morning.qqfcf.cn.gov.cn.qqfcf.cn http://www.morning.xtqr.cn.gov.cn.xtqr.cn http://www.morning.gblrn.cn.gov.cn.gblrn.cn http://www.morning.lbbyx.cn.gov.cn.lbbyx.cn http://www.morning.pdmc.cn.gov.cn.pdmc.cn http://www.morning.zrwlz.cn.gov.cn.zrwlz.cn http://www.morning.ylrxd.cn.gov.cn.ylrxd.cn http://www.morning.jcnmy.cn.gov.cn.jcnmy.cn http://www.morning.phzrq.cn.gov.cn.phzrq.cn