HarmonyOS Notification怎么自定义通知声音?
//自定义声音不好使
static async publish() {
await notificationManager.addSlot(notificationManager.SlotType.SOCIAL_COMMUNICATION)
let notificationSlot: notificationManager.NotificationSlot =
await notificationManager.getSlot(notificationManager.SlotType.SOCIAL_COMMUNICATION)
let soundPath = 'file://com.example.helloapplication/data/storage/el2/base/haps/entry/files/im_message_sound.mp3'
notificationSlot.sound = soundPath
//默认sound file://system/etc/Light.ogg
// 通知Request对象
let notificationRequest: notificationManager.NotificationRequest = {
id: 1,
notificationSlotType: notificationManager.SlotType.SOCIAL_COMMUNICATION,
content: {
notificationContentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT,
normal: {
title: "test_title",
text: "test_text",
additionalText: "test_additionalText"
}
}
};
notificationManager.publish(notificationRequest).then(() => {
console.info("publish success");
}).catch((err: object) => {
console.error(`publish fail: ${JSON.stringify(err)}`);
});
}
HarmonyOS
赞
收藏 0
回答 1
待解决
相关问题
HarmonyOS 自定义通知栏点击更新需求
130浏览 • 1回复 待解决
HarmonyOS 自定义弹窗怎么设置自定义动画?
517浏览 • 1回复 待解决
Notification Kit(用户通知服务)请求通知授权
2475浏览 • 1回复 待解决
HarmonyOS notification,点击通知栏,怎么跳转到指定界面
21浏览 • 1回复 待解决
HarmonyOS 怎么自定义装饰器
168浏览 • 1回复 待解决
HarmonyOS 自定义工具类中怎么弹出CustomDialogController自定义弹框?
614浏览 • 1回复 待解决
HarmonyOS 怎么自定义Tab的Tabbar
161浏览 • 1回复 待解决
HarmonyOS 自定义绘制接口怎么使用
35浏览 • 1回复 待解决
自定义Dialog,怎么给自定义Dialog设置其他背景色
1004浏览 • 1回复 待解决
怎么实现自定义弹窗1打开自定义弹窗2
2682浏览 • 1回复 待解决
HarmonyOS 怎么设置自定义字体并获取自定义字体的宽度,高度
150浏览 • 1回复 待解决
自定义弹窗自定义转场动画
1291浏览 • 1回复 待解决
HarmonyOS 自定义Popup arrow颜色怎么设置
34浏览 • 1回复 待解决
HarmonyOS button文字怎么自定义设置位置
165浏览 • 1回复 待解决
HarmonyOS 文本怎么自定义识别高亮显示和自定义点击事件显示菜单/气泡?
532浏览 • 1回复 待解决
HarmonyOS treeview怎么实现自定义Cell内容
164浏览 • 1回复 待解决
HarmonyOS 自定义View怎么转换为PixelMap
133浏览 • 1回复 待解决
自定义资源文件怎么读取?
2525浏览 • 1回复 待解决
编译构建怎么编写自定义任务?
843浏览 • 1回复 待解决
JAVA卡片怎么用自定义组件?
6762浏览 • 1回复 待解决
HarmonyOS 定义自定义组件
211浏览 • 1回复 待解决
HarmonyOS 自定义组件如何写自定义事件?
732浏览 • 1回复 待解决
HarmonyOS 自定义弹窗、自定义键盘自动关闭问题
262浏览 • 1回复 待解决
HarmonyOS Notification kit当前创建通知,状态栏无提示
83浏览 • 1回复 待解决
HarmonyOS 地图的marker怎么支持自定义布局
30浏览 • 1回复 待解决
https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-inner-notification-notificationrequest-V5#notificationrequest-1
sound字段 应用通知自定义铃声,需要通过Push云侧获取自定义发送铃声权限后,该字段才会生效