• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 发布文本类型通知
2
3文本类型通知主要应用于发送短信息、提示信息等,支持普通文本类型和多行文本类型。
4
5**表1** 基础类型通知中的内容分类
6
7| 类型                             | 描述          |
8| ------------------------------- | ------------- |
9| NOTIFICATION_CONTENT_BASIC_TEXT | 普通文本类型。 |
10| NOTIFICATION_CONTENT_MULTILINE  | 多行文本类型。 |
11
12## 接口说明
13
14通知发布接口说明详见下表,通知发布的详情可通过入参[NotificationRequest](../reference/apis-notification-kit/js-apis-inner-notification-notificationRequest.md#notificationrequest)来进行指定,可以包括通知内容,通知ID,通知的通道类型和通知发布时间等信息。
15
16| **接口名** | **描述** |
17| -------- | -------- |
18| publish(request: NotificationRequest, callback: AsyncCallback<void>): void | 发布通知。                 |
19| cancel(id: number, label: string, callback: AsyncCallback<void>): void | 取消指定的通知。           |
20| cancelAll(callback: AsyncCallback<void>): void; | 取消所有该应用发布的通知。 |
21
22
23## 开发步骤
24
251. 导入模块。
26
27   ```ts
28   import notificationManager from '@ohos.notificationManager';
29   import Base from '@ohos.base';
30   ```
31
322. 构造NotificationRequest对象,并发布通知。
33   - 普通文本类型通知由标题、文本内容和附加信息三个字段组成,其中标题和文本内容是必填字段,大小均需要小于200字节。
34
35      ```ts
36      let notificationRequest: notificationManager.NotificationRequest = {
37        id: 1,
38        content: {
39          notificationContentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, // 普通文本类型通知
40          normal: {
41            title: 'test_title',
42            text: 'test_text',
43            additionalText: 'test_additionalText',
44          }
45        }
46      };
47      notificationManager.publish(notificationRequest, (err:Base.BusinessError) => {
48        if (err) {
49          console.error(`Failed to publish notification. Code is ${err.code}, message is ${err.message}`);
50          return;
51        }
52        console.info('Succeeded in publishing notification.');
53      });
54      ```
55
56
57   - 多行文本类型通知继承了普通文本类型的字段,同时新增了多行文本内容、内容概要和通知展开时的标题,其字段均小于200字节。通知默认显示与普通文本相同,展开后,标题显示为展开后标题内容,多行文本内容多行显示。
58
59      ```ts
60      let notificationRequest: notificationManager.NotificationRequest = {
61        id: 3,
62        content: {
63          notificationContentType: notificationManager.ContentType.NOTIFICATION_CONTENT_MULTILINE, // 多行文本类型通知
64          multiLine: {
65            title: 'test_title',
66            text: 'test_text',
67            briefText: 'test_briefText',
68            longTitle: 'test_longTitle',
69            lines: ['line_01', 'line_02', 'line_03', 'line_04'],
70          }
71        }
72      };
73      // 发布通知
74      notificationManager.publish(notificationRequest, (err:Base.BusinessError) => {
75        if (err) {
76          console.error(`Failed to publish notification. Code is ${err.code}, message is ${err.message}`);
77          return;
78        }
79        console.info('Succeeded in publishing notification.');
80      });
81      ```
82