HarmonyOS 使用用户通知服务notificationManager,管理通知渠道配置后未生效
使用用户通知服务notificationManager,管理通知渠道配置为SOCIAL_COMMUNICATION类型,应用触发通知时状态栏没有提示,且没有提示音(声音是打开的)
public startModemStatusListener() {
LogUtils.i('[LogCapture.startModemStatusListener]', 'startModemStatusListener!');
//设置通知权限
let context = GlobalContext.getContext().getObject('context') as common.UIAbilityContext;
notificationManager.isNotificationEnabled().then((data: boolean) => {
console.info("isNotificationEnabled success, data: " + JSON.stringify(data));
if(!data){
notificationManager.requestEnableNotification(context).then(() => {
hilog.info(DOMAIN_NUMBER, TAG, `[ANS] requestEnableNotification success`);
}).catch((err : Base.BusinessError) => {
if(this.notificationErrorCode == err.code){
console.info(`[ANS] requestEnableNotification refused`);
} else {
console.error(`[ANS] requestEnableNotification failed, code is ${err.code}, message is ${err.message}`);
}
});
}
}).catch((err : Base.BusinessError) => {
console.error(`isNotificationEnabled fail: ${JSON.stringify(err)}`);
});
// 通知渠道 addslot回调
let addSlotCallBack = (err: Base.BusinessError): void => {
if (err) {
console.error(`addSlot failed, code is ${err.code}, message is ${err.message}`);
} else {
console.info("addSlot success");
}
}
notificationManager.addSlot(notificationManager.SlotType.CUSTOMER_SERVICE, addSlotCallBack);
//五分钟检查一次modem是否是开启状态
this.modemListenerId = setInterval(async () => {
if (true) {
//设置角标
let badgeNumber = 1;
notificationManager.setBadgeNumber(badgeNumber, this.setBadgeNumberCallback);
let notificationRequest: notificationManager.NotificationRequest = {
id: this.notificationId,
content: {
notificationContentType: notificationManager.ContentType.NOTIFICATION_CONTENT_BASIC_TEXT, // 普通文本类型通知
normal: {
title: 'FiledTest Notification',
text: 'modem is close,please deal',
additionalText: 'test_additionalText',
}
}
};
notificationManager.publish(notificationRequest, (err:Base.BusinessError) => {
if (err) {
console.error(`Failed to publish notification. Code is ${err.code}, message is ${err.message}`);
return;
}
console.info('Succeeded in publishing notification.');
});
}
}, 10000)
}
HarmonyOS
赞
收藏 0
回答 1
待解决
相关问题
Notification Kit(用户通知服务)请求通知授权
2357浏览 • 1回复 待解决
HarmonyOS notificationManager普通文本通知点击事件,和点击通知后自动消失
56浏览 • 1回复 待解决
HarmonyOS 通知渠道与通知提醒方式不一致
53浏览 • 1回复 待解决
调用notificationManager.publish发布通知失败
1748浏览 • 1回复 待解决
调用请求通知notificationManager.requestEnableNotification接口,报错17700001
2066浏览 • 1回复 待解决
HarmonyOS 扩展通知消息未触达问题
363浏览 • 1回复 待解决
HarmonyOS 如何跳转设置的通知管理页
66浏览 • 1回复 待解决
HarmonyOS 如何使用Want跳转到应用的通知管理页面
26浏览 • 1回复 待解决
HarmonyOS 桌面应用图标通知未读数量怎么获取?
295浏览 • 1回复 待解决
HarmonyOS push服务推送通知到手机,怎么配置拉起应用指定的页面
91浏览 • 1回复 待解决
HarmonyOS 跳转到设置->通知管理的方法
53浏览 • 1回复 待解决
HarmonyOS多渠道配置,HarmonyOS 工程多渠道配置如何开发?
393浏览 • 1回复 待解决
HarmonyOS 设置了锁屏通知,但是锁屏后没有显示通知栏
671浏览 • 1回复 待解决
HarmonyOS app中前往系统设置开启通知,只能到通知和状态栏那一级,到不了对应app的通知管理页面
45浏览 • 1回复 待解决
HarmonyOS 跳转到系统通知管理页面,目前只能跳转到应用的设置首页,希望跳转到具体通知管理页面
46浏览 • 1回复 待解决
HarmonyOS如何跳转到当前应用的通知管理页面
717浏览 • 1回复 待解决
HarmonyOS 消息通知使用示例demo
346浏览 • 1回复 待解决
HarmonyOS如何获取通知栏的通知内容呢?
493浏览 • 1回复 待解决
HarmonyOS 消息通知
3浏览 • 1回复 待解决
使用JS开发,通知功能,除了通知栏还有什么API可以调用吗?
3817浏览 • 1回复 待解决
使用List lazyForeach时,reuseId未生效
329浏览 • 1回复 待解决
地图服务开通后多久生效?
372浏览 • 1回复 待解决
HarmonyOS 推送通知
63浏览 • 1回复 待解决
HarmonyOS 通知权限
41浏览 • 1回复 待解决
1.SlotType配置为SOCIAL_COMMUNICATION后会支持横幅
2.App默认没有横幅,打开横幅需手动设置,在应用对应的通知管理中的提醒方式中进行设置
3.在默认没有横幅的前提下,希望尽可能的让用户感知到消息,当前不支持,可以提需求。