通过notificationManager.publish发送通知,状态栏不会像其他系统那样弹出通知内容,也没有显示应用通知图标,只有当状态栏下拉以后,能看到通知。
notificationManager.publish代码如下
// 发起通知
let request: notificationManager.NotificationRequest = {
id: 1,
content: {
notificationContentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: {
title: '注意!手机银行已经切换到后台',
text: '手机银行已切换到后台',
additionalText: '点击重新进入手机银行'
},
},
isFloatingIcon:true,
notificationSlotType:notificationManager.SlotType.SERVICE_INFORMATION,
}
notificationManager.publish(request, (err) => {
if (null != err) {
Logger.error(`EntryAbility => onBackground 发送通知异常:${JSON.stringify(err)}`)
return
}
Logger.debug(`通知发送成功`)
})
将notificationSlotType改成notificationManager.SlotType.SOCIAL\_COMMUNICATION,因为只有SOCIAL\_COMMUNICATION类型支持横幅通知,相关规则可参考:
https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/notification-slot-V5
另外测试时,注意手机设置里,应用的通知管理中,需要把提醒方式的“横幅通知”勾上,这样才会直接弹出消息。