harmony 鸿蒙@system.notification (通知消息)
@system.notification (通知消息)
说明: - 从API Version 7 开始,该接口不再维护,推荐使用新接口
@ohos.notification
。
- 本模块首批接口从API version 3开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
导入模块
import notification from '@system.notification';
ActionResult
系统能力:以下各项对应的系统能力均为SystemCapability.Notification.Notification
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
bundleName | string | 是 | 单击通知后要重定向到的应用程序的Bundle名。 |
abilityName | string | 是 | 单击通知后要重定向到的应用程序的Ability名称。 |
uri | string | 否 | 要重定向到的页面的uri。 |
ShowNotificationOptions
系统能力:以下各项对应的系统能力均为SystemCapability.Notification.Notification
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
contentTitle | string | 否 | 通知标题。 |
contentText | string | 否 | 通知内容。 |
clickAction | ActionResult | 否 | 通知被点击后触发的行为。 |
notification.show
show(options?: ShowNotificationOptions): void
显示通知。
系统能力: SystemCapability.Notification.Notification
参数:
参数名 | 类型 | 必填 | 说明 |
---|---|---|---|
options | ShowNotificationOptions | 否 | 通知标题。 |
示例:
let notificationObj: notification = {
show() {
notification.show({
contentTitle: 'title info',
contentText: 'text',
clickAction: {
bundleName: 'com.example.testapp',
abilityName: 'notificationDemo',
uri: '/path/to/notification'
}
});
}
}
export default notificationObj
你可能感兴趣的鸿蒙文章
harmony 鸿蒙BundleStatusCallback
harmony 鸿蒙@ohos.bundle.innerBundleManager (innerBundleManager模块)
harmony 鸿蒙@ohos.distributedBundle (分布式包管理)
harmony 鸿蒙@ohos.bundle (Bundle模块)
harmony 鸿蒙@ohos.enterprise.EnterpriseAdminExtensionAbility (企业设备管理扩展能力)
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦