当前位置:   article > 正文

HarmonyOS开发(十):通知和提醒_鸿蒙应用开发通知行为意图

鸿蒙应用开发通知行为意图

1、通知概述

1.1、简介

应用可以通过通知接口发送通知消息,终端用户可以通过通知栏查看通知内容,也可以点击通知来打开应用。

通知使用的的常见场景:

  • 显示接收到的短消息、即使消息...
  • 显示应用推送消息
  • 显示当前正在进行的事件,如下载等

HarmonyOS通过ANS(Advanced Notification Service,通知系统服务)对通知消息进行管理,支持多种通知类型。

1.2、通知的业务流程

业务流程中由通知子系统、通知发送端、通知订阅组件

一条通知从通知发送端产生,发送到通知子系统,然后再由通知子系统分发给通知订阅端。

1.3、通知消息的表现形式

 1.4、通知结构

1、通知小图图标:表示通知的功能与类型

2、通知名称:应用名称或者功能名称

3、时间:发送通知的时间,系统默认显示

4、展示图标:用来展开被折叠的内容和按钮,如果没有折叠的内容和按钮,则不显示这个图标

5、内容标题

6、内容详情

2、基础类型通知

基础类型通知主要应用于发送短信息、提示信息、广告推送...,它支持普通文本类型、长文本类型、图片类型。

普通文本类型                NOTIFICATION_CONTENT_BASIC_TEXT

长文本类型                    NOTIFICATION_CONTENT_LONG_TEXT

多行文本类型                NOTIFICATION_CONTENT_MULTILINE

图片类型                       NOTIFICATION_CONTENT_PICTURE

2.1、相关接口

接口名描述
publish(request:NotificatioinRequest,callback:AsyncCallback<void>):void发布通知
cancel(id:number,label:string,callback:AsyncCallback<void>):void取消指定的通知,通过id来判断是哪个通知
cancelAll(callback:AsycCallback<void>):void取消所有该应用发布的通知

2.2、开发步骤

1、导入模块

import NotificationManager from '@ohos.notificationManager';

2、构造NotificationRequest对象,发布通知

  1. import notificationManager from '@ohos.notificationManager'
  2. import Prompt from '@system.prompt'
  3. import image from '@ohos.multimedia.image';
  4. @Entry
  5. @Component
  6. struct Index {
  7. publishNotification() {
  8. let notificationRequest: notificationManager.NotificationRequest = {
  9. id: 0,
  10. slotType: notificationManager.SlotType.SERVICE_INFORMATION,
  11. content: {
  12. contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
  13. normal:{
  14. title: '通知标题',
  15. text: '这是一个通知的消息内容',
  16. additionalText: '通知附加内容' // 附加内容是对通知内容的补充
  17. }
  18. }
  19. };
  20. notificationManager.publish(notificationRequest).then(() => {
  21. // 发布通知
  22. Prompt.showToast({
  23. message: '发布通知消息成功',
  24. duration: 2000
  25. })
  26. }).catch((err) => {
  27. Prompt.showToast({
  28. message: `发布通知失败,失败代码:${err.code},失败原因:${err.message}`,
  29. duration: 2000
  30. })
  31. });
  32. }
  33. /* 多行文本通知 */
  34. publicNotification1(){
  35. let notificationRequest:notificationManager.NotificationRequest = {
  36. id: 1,
  37. content: {
  38. contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_MULTILINE,
  39. multiLine: {
  40. title: '通知标题',
  41. text: '通知的内容简介',
  42. briefText: 'briefText内容',
  43. longTitle: 'longTitle内容',
  44. lines: ['第一行内容','第二行内容','第三行内容']
  45. }
  46. }
  47. };
  48. notificationManager.publish(notificationRequest).then(() => {
  49. // 发布通知
  50. Prompt.showToast({
  51. message: '发布通知消息成功',
  52. duration: 2000
  53. })
  54. }).catch((err) => {
  55. Prompt.showToast({
  56. message: `发布通知失败,失败代码:${err.code},失败原因:${err.message}`,
  57. duration: 2000
  58. })
  59. });
  60. }
  61. /* 图片通知 */
  62. async publishPictureNotification(){
  63. // 把资源图片转为PixelMap对象
  64. let resourceManager = getContext(this).resourceManager;
  65. let imageArray = await resourceManager.getMediaContent($r('app.media.image2').id);
  66. let imageResource = image.createImageSource(imageArray.buffer);
  67. let pixelMap = await imageResource.createPixelMap();
  68. // 描述通知信息
  69. let notificationRequest:notificationManager.NotificationRequest = {
  70. id: 2,
  71. content: {
  72. contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_PICTURE,
  73. picture: {
  74. title: '通知消息的标题',
  75. text: '展开查看详情,通知内容',
  76. expandedTitle: '展开时的内容标题',
  77. briefText: '这里是通知的概要内容,对通知的总结',
  78. picture: pixelMap
  79. }
  80. }
  81. };
  82. notificationManager.publish(notificationRequest).then(() => {
  83. // 发布通知消息
  84. Prompt.showToast({
  85. message: '发布通知消息成功',
  86. duration: 2000
  87. })
  88. }).catch((err) => {
  89. Prompt.showToast({
  90. message: `发布通知失败,失败代码:${err.code},失败原因:${err.message}`,
  91. duration: 2000
  92. })
  93. });
  94. }
  95. build() {
  96. Row() {
  97. Column() {
  98. Button('发送通知')
  99. .width('50%')
  100. .margin({bottom:10})
  101. .onClick(() => {
  102. this.publishNotification()
  103. })
  104. Button('发送多行文本通知')
  105. .width('50%')
  106. .margin({bottom:10})
  107. .onClick(() => {
  108. this.publicNotification1()
  109. })
  110. Button('发送图片通知')
  111. .width('50%')
  112. .margin({bottom:10})
  113. .onClick(() => {
  114. this.publishPictureNotification()
  115. })
  116. }
  117. .width('100%')
  118. }
  119. .height('100%')
  120. }
  121. }

3、进度条类型通知

进度条通知也是常见的通知类型,主要应用于文件下载、事务处理进度的显示。

HarmonyOS提供了进度条模板,发布通知应用设置好进度条模板的属性值,通过通知子系统发送到通知栏显示。

当前系统模板仅支持进度条模板,通知模板NotificationTemplate中的data参数为用户自定义数据,用来显示模块相关的数据。

3.1、相关接口

isSupportTemplate(templateName: string,callback:AsyncCallback<boolean>) : void        查询模板是否存在

3.2、开发步骤

1、导入模块

import NotificationManager from '@ohos.notificationManager'

2、查询系统是否支持进度条模板

  1. NotificationManager.isSupportTemplate('downloadTemplate').then((data) => {
  2. let isSupportTpl: boolean = data; // 这里为true则表示支持模板
  3. // ...
  4. }).catch((err) => {
  5. console.error('查询失败')
  6. })

3、在第2步之后,再构造进度条模板对象,发布通知

  1. import notificationManager from '@ohos.notificationManager'
  2. import Prompt from '@system.prompt'
  3. @Entry
  4. @Component
  5. struct ProgressNotice {
  6. async publishProgressNotification() {
  7. let isSupportTpl: boolean;
  8. await notificationManager.isSupportTemplate('downloadTemplate').then((data) => {
  9. isSupportTpl = data;
  10. }).catch((err) => {
  11. Prompt.showToast({
  12. message: `判断是否支持进度条模板时报错,error[${err}]`,
  13. duration: 2000
  14. })
  15. })
  16. if(isSupportTpl) {
  17. // 构造模板
  18. let template = {
  19. name: 'downloadTemplate',
  20. data: {
  21. progressValue: 60, // 当前进度值
  22. progressMaxValue: 100 // 最大进度值
  23. }
  24. };
  25. let notificationRequest: notificationManager.NotificationRequest = {
  26. // id: 100, // 这里的id可以不传
  27. content : {
  28. contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
  29. normal: {
  30. title: '文件下载:鸿蒙学习手册.pdf',
  31. text: '下载进度',
  32. additionalText: '60%'
  33. }
  34. },
  35. template: template
  36. };
  37. // 发布通知
  38. notificationManager.publish(notificationRequest).then(() => {
  39. Prompt.showToast({
  40. message: `发布通知成功!`,
  41. duration: 2000
  42. })
  43. }).catch((err) => {
  44. Prompt.showToast({
  45. message: `发布通知失败,error[${err}]`,
  46. duration: 2000
  47. })
  48. })
  49. } else {
  50. Prompt.showToast({
  51. message: '不支持downloadTemplate进度条通知模板',
  52. duration: 2000
  53. })
  54. }
  55. }
  56. build() {
  57. Row() {
  58. Column() {
  59. Button('发送进度条通知')
  60. .width('50%')
  61. .onClick(()=>{
  62. this.publishProgressNotification()
  63. })
  64. }
  65. .width('100%')
  66. }
  67. .height('100%')
  68. }
  69. }

4、通知其它配置

4.1、设置通道通知

设置通道知,可以让通知有不同的表现形式,如社交类型的通知是横幅显示的,并且有提示音。但一般的通知则不会横幅显示,可以使用slotType来实现。

  • SlotType.SOCIAL_COMMUNICATION:社交 类型,状态栏中显示通知图标,有横幅提示音
  • SlotType.SERVICE_INFORMATION:服务类型,在状态栏中显示通知图标,没有横幅但有提示音
  • SlotType.CONTENT_INFORMATION:内容类型,状态栏中显示通知图标,没有横幅和提示音
  • SlotType.OTHER_TYPE:其它类型,状态栏中不显示通知图标,没有横幅和提示音
  1. import image from '@ohos.multimedia.image';
  2. import notificationManager from '@ohos.notificationManager';
  3. import Prompt from '@system.prompt';
  4. @Entry
  5. @Component
  6. struct SlotTypeTest {
  7. async publishSlotTypeNotification(){
  8. let imageArray = await getContext(this).resourceManager.getMediaContent($r('app.media.tx').id);
  9. let imageResource = image.createImageSource(imageArray.buffer);
  10. let opts = {desiredSize: {height: 72, width: 72}};
  11. let largePixelMap = await imageResource.createPixelMap(opts);
  12. let notificationRequest: notificationManager.NotificationRequest = {
  13. id: 1,
  14. content: {
  15. contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
  16. normal:{
  17. title: '赵子龙',
  18. text: '等会大战三百回合~~'
  19. }
  20. },
  21. slotType:notificationManager.SlotType.SOCIAL_COMMUNICATION,
  22. largeIcon: largePixelMap // 通知大图标
  23. };
  24. notificationManager.publish(notificationRequest).then(() => {
  25. // 发布通知
  26. Prompt.showToast({
  27. message: '发布通知消息成功',
  28. duration: 2000
  29. })
  30. }).catch((err) => {
  31. Prompt.showToast({
  32. message: `发布通知失败,失败代码:${err.code},失败原因:${err.message}`,
  33. duration: 2000
  34. })
  35. });
  36. }
  37. build() {
  38. Row() {
  39. Column() {
  40. Button('发送通知')
  41. .width('50%')
  42. .onClick(() => {
  43. this.publishSlotTypeNotification()
  44. })
  45. }
  46. .width('100%')
  47. }
  48. .height('100%')
  49. }
  50. }

5、为通知添加行为意图

WantAgent提供了封装行为意图的能力,这里的行为意图能力就要是指拉起指定的应用组件及发布公共事件等能力。

HarmonyOS支持以通知的形式,把WantAgent从发布方传递到接收方,从而在接收方触发WantAgent中指定的意图。

为通知添加行为意图的实现方式如上图所示,发布通知的应用向组件管理服务AMS(Ability Manager Service)申请WantAgent,然后随其他通知信息 一起发送给桌面,当用户在桌面通知栏上点击通知时,触发WantAgent动作。

5.1、相关接口

接口名描述
getWantAgent(info: WantAgentInfo, callback:AsyncCallback<WantAgent>):void创建WantAgent
trigger(agent:WantAgent, triggerInfo:TrggerInfo,callback?:Callback<CompleteData>):void触发WantAgent意图
cancel(agent:WantAgent,callback:AsyncCallback<void>):void取消WantAgent
getWant(agent:WantAgent,callback:AsyncCallback<Want>):void获取WantAgent的want
equal(agent:WantAgent,otherAgent:WantAgent,callback:AsyncCallback<boolean>):void判断两个WantAgent实例是否相等

5.2、开发步骤

1、导入模块

  1. import NotificationManager from '@ohos.notificationManager';
  2. import wantAgent from '@ohos.app.ability.wantAgent';

2、发送通知

  1. import notificationManager from '@ohos.notificationManager'
  2. import wantAgent from '@ohos.wantAgent';
  3. import Prompt from '@system.prompt';
  4. let wantAgentObj = null; // 保存创建成功的wantAgent对象,后续使用其完成触发的动作
  5. // 通过WantAgentInfo的operationType设置动作类型
  6. let wantAgentInfo = {
  7. wants: [
  8. {
  9. deviceId: '', // 这里为空表示是本设备
  10. bundleName: 'com.xiaoxie', // 在app.json5中查找
  11. // moduleName: 'entry', // 在module.json5中查找,如果待启动的ability在同一个module则可以不写
  12. abilityName: 'MyAbility', // 待启动ability的名称,在module.json5中查找
  13. }
  14. ],
  15. operationType: wantAgent.OperationType.START_ABILITY,
  16. requestCode: 0,
  17. wantAgentFlags:[wantAgent.WantAgentFlags.CONSTANT_FLAG]
  18. }
  19. @Entry
  20. @Component
  21. struct ButtonNotice {
  22. async publishButtonNotice(){
  23. // 创建WantAgent
  24. await wantAgent.getWantAgent(wantAgentInfo).then((data) => {
  25. wantAgentObj = data;
  26. }).catch((err) => {
  27. Prompt.showToast({
  28. message: `创建wangAgent失败,${JSON.stringify(err)}`
  29. })
  30. })
  31. let notificationRequest:notificationManager.NotificationRequest = {
  32. id: 1,
  33. slotType: notificationManager.SlotType.SOCIAL_COMMUNICATION, // 这个是社交类型的通知
  34. content: {
  35. contentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
  36. normal: {
  37. title: '赵子龙',
  38. text: '吃饭了吗?'
  39. }
  40. },
  41. actionButtons: [
  42. {
  43. title: '回复',
  44. wantAgent: wantAgentObj
  45. }
  46. ]
  47. };
  48. // 发布WantAgent通知
  49. notificationManager.publish(notificationRequest,(err) => {
  50. if(err) {
  51. Prompt.showToast({
  52. message: '发布通知失败!',
  53. duration: 2000
  54. })
  55. } else {
  56. Prompt.showToast({
  57. message: '发布通知成功!',
  58. duration: 2000
  59. })
  60. }
  61. })
  62. }
  63. build() {
  64. Row() {
  65. Column() {
  66. Button('发送通知')
  67. .width('50%')
  68. .onClick(() => {
  69. this.publishButtonNotice()
  70. })
  71. }
  72. .width('100%')
  73. }
  74. .height('100%')
  75. }
  76. }

6、后台代理提醒

当应用需要在指定时刻向用户发送一些业务提醒通知时,HarmonyOS提供后台代理提醒功能,在应用退居后台或退出后,计时和提醒通知功能被系统后台代理接管。

后台代理提醒业务类型:

1、倒计时类:基于倒计时的提醒功能,适用于短时的计时提醒业务

2、日历类:基于日历的提醒功能,适用于较长时间的提醒业务

3、闹钟类:基于时钟的提醒功能,适用于指定时刻的提醒业务

后台代理提醒就是由系统后台进程代理应用的提醒功能。后台代理提醒服务通过reminderAgentManager模块提醒定义、创建提醒、取消提醒...

 提醒使用的前置条件

1、添加后台代理提醒的使用权限:ohos.permission.PUBLISH_AGENT_REMINDER

2、导入后台代理提醒reminderAgentManager模块

import reminderAgent from '@ohos.reminderAgentManager';
  1. import reminderAgent from '@ohos.reminderAgentManager';
  2. import Prompt from '@system.prompt';
  3. @Entry
  4. @Component
  5. struct ReminderTest {
  6. @State message: string = 'Hello World';
  7. reminderId:number;
  8. myReminderAgent(){
  9. let reminderRequest:reminderAgent.ReminderRequestAlarm = {
  10. reminderType: reminderAgent.ReminderType.REMINDER_TYPE_ALARM,
  11. hour: 12,
  12. minute: 23,
  13. daysOfWeek: [1,2,3,4,5,6,7], // 星期1~7
  14. title: '提醒信息 title',
  15. ringDuration: 10, // 响铃时长
  16. snoozeTimes: 1, // 延迟提醒次数,默认是0
  17. timeInterval: 60*60*5, // 延迟提醒间隔时间
  18. actionButton: [
  19. {
  20. title: '关闭',
  21. type: reminderAgent.ActionButtonType.ACTION_BUTTON_TYPE_CLOSE
  22. }
  23. ]
  24. /*,
  25. wantAgent: { // 提醒到达时自动拉起的目标ability
  26. pkgName: 'com.xiaoxie',
  27. abilityName: 'MyAbility'
  28. }*/
  29. };
  30. reminderAgent.publishReminder(reminderRequest,(err,reminderId) => {
  31. if(err) {
  32. Prompt.showToast({
  33. message: '发布提醒失败',
  34. duration: 2000
  35. })
  36. return;
  37. }
  38. Prompt.showToast({
  39. message: '发布提醒成功!id = ' + reminderId,
  40. duration: 2000
  41. })
  42. this.reminderId = reminderId;
  43. })
  44. }
  45. build() {
  46. Row() {
  47. Column() {
  48. Text(this.message)
  49. .fontSize(20)
  50. .fontWeight(FontWeight.Bold)
  51. .margin({bottom:15})
  52. Button('发布提醒')
  53. .width('50%')
  54. .onClick(() => {
  55. this.myReminderAgent()
  56. })
  57. }
  58. .width('100%')
  59. }
  60. .height('100%')
  61. }
  62. }

在本地模拟器上未成功,使用远程模拟器可以实现这个功能

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/350150
推荐阅读
相关标签
  

闽ICP备14008679号