HarmonyOS 关于notificationManager.publish?

通过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(`通知发送成功`)
})
阅读 409
1 个回答
logo
HarmonyOS
子站问答
访问
宣传栏