• 【中秋国庆不断更】HarmonyOS对通知类消息的管理与发布通知(下)


    一、发布进度条类型通知

    进度条通知也是常见的通知类型,主要应用于文件下载、事务处理进度显示。HarmonyOS提供了进度条模板,发布通知应用设置好进度条模板的属性值,如模板名、模板数据,通过通知子系统发送到通知栏显示。

    目前系统模板仅支持进度条模板,通知模板NotificationTemplate中的data参数为用户自定义数据,用于显示与模块相关的数据,效果示意如下图所示。

    接口说明

    isSupportTemplate()是查询模板是否支持接口,目前仅支持进度条模板。

    接口名

    描述

    isSupportTemplate(templateName: string, callback: AsyncCallback): void

    查询模板是否存在。

    开发步骤

    1.导入模块。

    import NotificationManager from '@ohos.notificationManager';
    
    

    2.系统是否支持进度条模板,查询结果为支持downloadTemplate模板类通知。

    1. NotificationManager.isSupportTemplate('downloadTemplate').then((data=> {
    2.   console.info(`[ANS] isSupportTemplate success`);
    3.   let isSupportTpl: boolean = data// isSupportTpl的值为true表示支持支持downloadTemplate模板类通知,false表示不支持
    4.   // ...
    5. }).catch((err) => {
    6.   console.error(`[ANS] isSupportTemplate failed, error[${err}]`);
    7. });

    说明

    查询系统支持进度条模板后,再进行后续的步骤操作。

    1.构造进度条模板对象,并发布通知。

    1. let template = {
    2.   name:'downloadTemplate',
    3. data: {
    4.     title: '标题:',
    5. fileName: 'music.mp4',
    6. progressValue: 30,
    7. progressMaxValue:100,
    8. }
    9. }
    10. //构造NotificationRequest对象
    11. let notificationRquest = {
    12.   id: 1,
    13. slotType: notify.SlotType.OTHER_TYPES,
    14. template: template,
    15. content: {
    16.     contentType: notify.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
    17. normal: {
    18.       title: template.data.title + template.data.fileName,
    19. text: "sendTemplate",
    20. additionalText: "30%"
    21. }
    22. },
    23. deliveryTime: new Date().getTime(),
    24. showDeliveryTime: true
    25. }
    26. notify.publish(notificationRquest).then(() => {
    27.   console.info(`[ANS] publish success `);
    28. }).catch((err) => {
    29.   console.error(`[ANS] failed to publish, error[${err}]`);
    30. });

    二、为通知添加行为意图

    WantAgent提供了封装行为意图的能力,这里所说的行为意图主要是指拉起指定的应用组件及发布公共事件等能力。HarmonyOS支持以通知的形式,将WantAgent从发布方传递至接收方,从而在接收方触发WantAgent中指定的意图。例如,在通知消息的发布者发布通知时,通常期望用户可以通过通知栏点击拉起目标应用组件。为了达成这一目标,开发者可以将WantAgent封装至通知消息中,当系统接收到WantAgent后,在用户点击通知栏时触发WantAgent的意图,从而拉起目标应用组件。

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

    图1 携带行为意图的通知运行机制

    接口说明

    具体接口描述,详见WantAgent接口文档

    接口名

    描述

    getWantAgent(info: WantAgentInfo, callback: AsyncCallback): void

    创建WantAgent。

    trigger(agent: WantAgent, triggerInfo: TriggerInfo, callback?: Callback): void

    触发WantAgent意图。

    cancel(agent: WantAgent, callback: AsyncCallback): void

    取消WantAgent。

    getWant(agent: WantAgent, callback: AsyncCallback): void

    获取WantAgent的want。

    equal(agent: WantAgent, otherAgent: WantAgent, callback: AsyncCallback): void

    判断两个WantAgent实例是否相等。

    开发步骤

    1.导入模块。

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

    2.创建WantAgentInfo信息。

    场景一:创建拉起Ability的WantAgent的WantAgentInfo信息。

    1. let wantAgentObj = null// 用于保存创建成功的wantAgent对象,后续使用其完成触发的动作。
    2. // 通过WantAgentInfo的operationType设置动作类型。
    3. let wantAgentInfo = {
    4.     wants: [
    5.         {
    6.             deviceId: '',
    7.             bundleName: 'com.example.test',
    8.             abilityName: 'com.example.test.MainAbility',
    9.             action: '',
    10.             entities: [],
    11.             uri: '',
    12.             parameters: {}
    13.         }
    14.     ],
    15.     operationType: wantAgent.OperationType.START_ABILITY,
    16.     requestCode: 0,
    17.     wantAgentFlags:[wantAgent.WantAgentFlags.CONSTANT_FLAG]
    18. }

    场景二:创建发布公共事件的WantAgent的WantAgentInfo信息。

    1. let wantAgentObj = null// 用于保存创建成功的WantAgent对象,后续使用其完成触发的动作。
    2. // wantAgentInfo
    3. let wantAgentInfo = {
    4.     wants: [
    5.         {
    6.             action: 'event_name'// 设置事件名。
    7.             parameters: {},
    8.         }
    9.     ],
    10.     operationType: wantAgent.OperationType.SEND_COMMON_EVENT,
    11.     requestCode: 0,
    12.     wantAgentFlags: [wantAgent.WantAgentFlags.CONSTANT_FLAG],
    13. }

    3.创建WantAgent。

    1. // 创建WantAgent
    2. wantAgent.getWantAgent(wantAgentInfo, (err, data=> {
    3.     if (err) {
    4.         console.error('[WantAgent]getWantAgent err=' + JSON.stringify(err));
    5.     } else {
    6.         console.info('[WantAgent]getWantAgent success');
    7.         wantAgentObj = data;
    8.     }
    9. });

    4.构造NotificationRequest对象。

    1. // 构造NotificationRequest对象
    2. let notificationRequest = {
    3.     content: {
    4.         contentType: NotificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
    5. normal: {
    6.             title: 'Test_Title',
    7. text: 'Test_Text',
    8. additionalText: 'Test_AdditionalText',
    9. },
    10. },
    11. id: 1,
    12. label: 'TEST',
    13. wantAgent: wantAgentObj,
    14. }

    5.发布WantAgent通知。

    1. // 通知发送
    2. NotificationManager.publish(notificationRequest, (err) => {
    3. if (err) {
    4.         console.error(`[ANS] failed to publish, error[${err}]`);
    5. return;
    6. }
    7.     console.info(`[ANS] publish success `);
    8. });

    6.用户通过点击通知栏上的通知,即可触发WantAgent的动作。

  • 相关阅读:
    20140311按键中断输入
    算法基础——二分检索
    SpringBoot项目创建-基础篇
    Redis的Pipeline简介
    Java学习(一)—— 初探Java
    K8S:pod控制器详解
    Elastic Search 7.x 学习笔记
    线性代数的本质(个人笔记)
    【Pytorch】2022 Pytorch基础入门教程(完整详细版)
    Java 地心地固坐标系转经纬度(WGS-84大地坐标)
  • 原文地址:https://blog.csdn.net/HarmonyOSDev/article/details/133313171