通知消息
說明:
開發(fā)前請(qǐng)熟悉鴻蒙開發(fā)指導(dǎo)文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
導(dǎo)入模塊
import notification from '@system.notification';
ActionResult
系統(tǒng)能力 :以下各項(xiàng)對(duì)應(yīng)的系統(tǒng)能力均為SystemCapability.Notification.Notification
名稱 | 可讀 | 可寫 | 類型 | 必填 | 描述 |
---|---|---|---|---|---|
bundleName | 是 | 是 | string | 是 | 單擊通知后要重定向到的應(yīng)用程序的Bundle名。 |
abilityName | 是 | 是 | string | 是 | 單擊通知后要重定向到的應(yīng)用程序的Ability名稱。 |
uri | 是 | 是 | string | 否 | 要重定向到的頁面的uri。 |
ShowNotificationOptions
系統(tǒng)能力 :以下各項(xiàng)對(duì)應(yīng)的系統(tǒng)能力均為SystemCapability.Notification.Notification
名稱 | 可讀 | 可寫 | 類型 | 必填 | 描述 |
---|---|---|---|---|---|
contentTitle | 是 | 是 | string | 否 | 通知標(biāo)題。 |
contentText | 是 | 是 | string | 否 | 通知內(nèi)容。 |
clickAction | 是 | 是 | ActionResult | 否 | 通知被點(diǎn)擊后觸發(fā)的行為。 |
notification.show
show(options?: ShowNotificationOptions): void
顯示通知。
系統(tǒng)能力: SystemCapability.Notification.Notification
參數(shù)名 | 類型 | 必填 | 說明 |
---|---|---|---|
options | ShowNotificationOptions | 否 | 通知標(biāo)題。HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿 |
示例:
export default {
show() {
notification.show({
contentTitle: 'title info',
contentText: 'text',
clickAction: {
bundleName: 'com.example.testapp',
abilityName: 'notificationDemo',
uri: '/path/to/notification',
},
});
},
}
;
審核編輯 黃宇
-
鴻蒙
+關(guān)注
關(guān)注
57文章
2378瀏覽量
42938
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論