• 【鸿蒙 HarmonyOS 4.0】通知


    一、介绍

    通知旨在让用户以合适的方式及时获得有用的新消息,帮助用户高效地处理任务。应用可以通过通知接口发送通知消息,用户可以通过通知栏查看通知内容,也可以点击通知来打开应用,通知主要有以下使用场景:

    • 显示接收到的短消息、即时消息等。
    • 显示应用的推送消息,如广告、版本更新等。
    • 显示当前正在进行的事件,如下载等。

    1.1、通知表现形式

    通知会在不同场景以不同形式提示用户,例如通知在状态栏上显示为图标、在通知栏上会显示通知详细信息。重要的信息还可以使用横幅通知,浮动在界面顶部显示。

    1.2、通知结构

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

    2. 通知名称:应用名称或功能名称。

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

    4. 展开箭头:点击标题区,展开被折叠的内容和按钮。若无折叠的内容和按钮,不显示此箭头。

    5. 内容标题:描述简明概要。

    6. 内容详情:描述具体内容或详情。

    二、创建通知

    在创建通知前需要先导入notificationManager模块

    import notification from '@ohos.notificationManager';

    2.1、发布基础类型通知

    基础类型通知主要应用于发送短信息、提示信息、广告推送等,支持普通文本类型、长文本类型、多行文本类型和图片类型,可以通过contentType指定通知的内容类型。下面以普通文本类型和图片类型为例来介绍基础通知的发布,其它基础类型您可以查阅API。

    • 发布普通文本类型通知,需要设置contentType类型为ContentType.NOTIFICATION_CONTENT_BASIC_TEXT。
    1. import notification from '@ohos.notificationManager';
    2. @Entry
    3. @Component
    4. struct NotificationDemo {
    5. publishNotification() {
    6. let notificationRequest: notification.NotificationRequest = { // 描述通知的请求
    7. id: 1, // 通知ID
    8. slotType: notification.SlotType.SERVICE_INFORMATION,
    9. content: { // 通知内容
    10. contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, // 普通文本类型通知
    11. normal: { // 基本类型通知内容
    12. title: '通知内容标题',
    13. text: '通知内容详情',
    14. additionalText: '通知附加内容', // 通知附加内容,是对通知内容的补充。
    15. }
    16. }
    17. }
    18. notification.publish(notificationRequest).then(() => { // 发布通知
    19. console.info('publish success');
    20. }).catch((err) => {
    21. console.error(`publish failed, dcode:${err.code}, message:${err.message}`);
    22. });
    23. }
    24. build() {
    25. Column() {
    26. Button('发送通知')
    27. .onClick(() => {
    28. this.publishNotification()
    29. })
    30. }
    31. .width('100%')
    32. }
    33. }

    效果图如下:

    • 发布图片类型通知,需要设置contentType类型为ContentType.NOTIFICATION_CONTENT_PICTURE。
    1. import notification from '@ohos.notificationManager';
    2. import image from '@ohos.multimedia.image';
    3. @Entry
    4. @Component
    5. struct NotificationTest1 {
    6. async publishPictureNotification() {
    7. // 将资源图片转化为PixelMap对象
    8. let resourceManager = getContext(this).resourceManager;
    9. let imageArray = await resourceManager.getMediaContent($r('app.media.mateBookProX').id);
    10. let imageResource = image.createImageSource(imageArray.buffer);
    11. let pixelMap = await imageResource.createPixelMap();
    12. let notificationRequest: notification.NotificationRequest = { // 描述通知的请求
    13. id: 1,
    14. content: {
    15. contentType: notification.ContentType.NOTIFICATION_CONTENT_PICTURE,
    16. picture: {
    17. title: '好物热销中', // 通知内容标题
    18. text: '展开查看详情', // 通知内容
    19. expandedTitle: '今日热门推荐', // 通知展开时的内容标题
    20. briefText: '这里一定有您喜欢的', // 通知概要内容,是对通知内容的总结
    21. picture: pixelMap // 通知的图片内容
    22. }
    23. }
    24. }
    25. notification.publish(notificationRequest).then(() => { // 发布通知
    26. console.info('publish success');
    27. }).catch((err) => {
    28. console.error(`publish failed, dcode:${err.code}, message:${err.message}`);
    29. });
    30. }
    31. build() {
    32. Column() {
    33. Button('发送大图通知')
    34. .onClick(() => {
    35. this.publishPictureNotification()
    36. })
    37. }
    38. .width('100%')
    39. }
    40. }

    效果图如下:

    2.2、发布进度类型通知

    进度条通知会展示一个动态的进度条,主要用于文件下载,长任务处理的进度显示

    ①在发布进度类型通知前需要查询系统是否支持进度条模板。

    1. notification.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. });

    ②构造进度条模板,name字段当前需要固定配置为downloadTemplate。

    1. let template = {
    2. name: 'downloadTemplate',
    3. data: {
    4. progressValue: 60, // 当前进度值
    5. progressMaxValue: 100 // 最大进度值
    6. }
    7. }
    8. let notificationRequest = {
    9. id: 1,
    10. content: {
    11. contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
    12. normal: {
    13. title: '文件下载:music.mp4',
    14. text: 'senTemplate',
    15. additionalText: '60%'
    16. }
    17. },
    18. template: template
    19. }
    20. // 发布通知
    21. notification.publish(notificationRequest).then(() => {
    22. console.info(`publish success`);
    23. }).catch(error => {
    24. console.error(`[ANS] publish failed, code is ${error.code}, message is ${error.message}`);
    25. })

    2.3、添加操作按钮

    最多可以给通知添加三个按钮,便于用户快速响应,比如关闭提醒。

    1. let notificationRequest = {
    2. id: 1,
    3. slotType: notification.SlotType.SOCIAL_COMMUNICATION,
    4. content: {
    5. contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
    6. normal: {
    7. title: '张三',
    8. text: '吃饭了吗'
    9. }
    10. },
    11. actionButtons: [
    12. {
    13. title: '回复',
    14. wantAgent: wantAgentObj
    15. }
    16. ]
    17. };

    2.4、更新通知

    在发出通知后,使用您之前使用的相同通知ID,再次调用notification.publish来实现通知的更新。如果之前的通知是关闭的,将会创建新通知。

    2.5、移除通知

    • 通过通知ID取消已发布的通知。
    notification.cancel(notificationId)
    • 取消所有已发布的通知。
    notification.cancelAll()

    三、设置通知通道

    通过通知通道,您可让通知有不同的表现形式,比如社交类型的通知是横幅显示的,并且有提示音,而一般的通知则不会横幅显示,您可以使用slotType来实现,设置slotType为SlotType.SOCIAL_COMMUNICATION,表示为社交类型通知。示例代码如下:

    1. let imageArray = await getContext(this).resourceManager.getMediaContent($r('app.media.largeIcon').id);
    2. let imageResource = image.createImageSource(imageArray.buffer);
    3. let opts = { desiredSize: { height: 72, width: 72 } };
    4. let largePixelMap = await imageResource.createPixelMap(opts);
    5. let notificationRequest: notification.NotificationRequest = { // 描述通知的请求
    6. id: 1, // 通知ID
    7. content: { // 通知内容
    8. contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, // 普通文本类型通知
    9. slotType: notification.SlotType.SOCIAL_COMMUNICATION,
    10. normal: { // 基本类型通知内容
    11. title: '张三', // 通知内容标题。
    12. text: '等会下班一起吃饭哦', // 通知内容
    13. }
    14. },
    15. largeIcon: largePixelMap // 通知大图标。可选字段,大小不超过30KB。
    16. }

    通知通道类型主要有以下几种:

    • SlotType.SOCIAL_COMMUNICATION:社交类型,状态栏中显示通知图标,有横幅和提示音。
    • SlotType.SERVICE_INFORMATION:服务类型,状态栏中显示通知图标,没有横幅但有提示音。
    • SlotType.CONTENT_INFORMATION:内容类型,状态栏中显示通知图标,没有横幅或提示音。
    • SlotType.OTHER_TYPES:其它类型,状态栏中不显示通知图标,没有横幅或提示音。

    四、创建通知组

    将不同类型的通知分为不同的组,以便用户可以更好的管理他们。当同组的通知有多条的时候,会自动折叠起来,避免通知比较多的时候,通知界面比较杂乱,例如当通知栏里有聊天消息通知和商品推荐通知时,我们只需要通过设置字段groupName,就可以对通知进行分组,给groupName设置不同的值可以将通知分为不同的组。

    1. let notifyId = 0;
    2. let chatRequest: notification.NotificationRequest = {
    3. id: notifyId++,
    4. groupName:'ChatGroup',
    5. content: {
    6. ...
    7. }
    8. };
    9. let productRequest: notification.NotificationRequest = {
    10. id: notifyId++,
    11. groupName: 'ProductGroup',
    12. content: {
    13. ...
    14. }
    15. };

    五、为通知添加行为意图

    WantAgent提供了封装行为意图的能力,这里所说的行为意图主要是指拉起指定的应用组件及发布公共事件等能力。给通知添加行为意图后,点击通知后可以拉起指定的UIAbility或者发布公共事件,您可以按照以下步骤来实现:

    5.1、导入模块。

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

    5.2、创建WantAgentInfo信息。

    场景一:拉起UIAbility。

    1. var wantAgentInfo = {
    2. wants: [
    3. {
    4. bundleName: "com.example.notification",
    5. abilityName: "EntryAbility"
    6. }
    7. ],
    8. operationType: wantAgent.OperationType.START_ABILITY,
    9. requestCode: 100
    10. }

    场景二:发布公共事件。

    1. let wantAgentInfo = {
    2. wants: [
    3. {
    4. action: 'event_name', // 设置事件名
    5. parameters: {},
    6. }
    7. ],
    8. operationType: wantAgent.OperationType.SEND_COMMON_EVENT,
    9. requestCode: 100,
    10. wantAgentFlags: [wantAgent.WantAgentFlags.CONSTANT_FLAG],
    11. }

    5.3、创建WantAgent对象。

    1. let wantAgentObj = null;
    2. wantAgent.getWantAgent(wantAgentInfo)
    3. .then((data) => {
    4. wantAgentObj = data;
    5. })
    6. .catch((err) => {
    7. console.error(`get wantAgent failed because ${JSON.stringify(err)}`);
    8. })

    5.4、构造NotificationRequest对象。

    1. var notificationRequest = {
    2. id: 1,
    3. content: {
    4. contentType: notification.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
    5. normal: {
    6. title: "通知标题",
    7. text: "通知内容"
    8. }
    9. },
    10. wantAgent: wantAgentObj
    11. };

    5.5、发布WantAgent通知。

    1. notification.publish(notificationRequest).then(() => { // 发布通知
    2. console.info("publish success");
    3. }).catch((err) => {
    4. console.error(`publish failed, code is ${err.code}, message is ${err.message}`);
    5. });

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

    最后:👏👏😊😊😊👍👍 

  • 相关阅读:
    java:详解常用的pom.xml配置
    《数字图像处理-OpenCV/Python》连载(2)目录
    WhatsOnChain中的sCrypt合约验证插件
    Settings应用详情页面 & 安卓应用安装器 - com.google.android.packageinstaller
    【Java核心知识】ThreadLocal相关知识
    redis中stream数据结构使用详解——redis最适合做消息队列的数据结构
    小球垂直跳动,C语言模拟重力加速度
    排序算法之【归并排序】
    macOS 下JD-GUI报JDK1.8+的问题
    python毕业设计基于flask应急救援调度系统django
  • 原文地址:https://blog.csdn.net/weixin_71403100/article/details/136635925