是否可以创建一个不生成提醒通知但会出现在锁屏中的通知

Is it possible to create a Notification which doesn't generate Heads up Notification, but will appear in lock-screen

我目前正在开发基于 Android 5.0.1 的基于 DECT 的 android 系统的项目,并且需要添加一个模式,该模式将在 InCallUi 时启动拨号应用程序App为运行(有来电时)。当拨号器应用程序在前台时,InCallUi 应用程序会发出烦人的提示通知,显示屏幕顶部显示的来电信息。

请问有没有什么方法可以隐藏提示通知,锁屏状态下还能看到通知入口?

我已经尝试更改通知的优先级,如下所示 link 只有当优先级设置为 HIGH、MAX 和 FULL_SCREEN 时才会显示提示通知:"If a notification's priority is flagged as High, Max, or full-screen, it gets a peeking notification.",但是当我将优先级设置为 LOW 或 MIN 时,提示通知仍然显示: https://material.google.com/patterns/notifications.html#notifications-behavior

有人能帮忙吗?谢谢:)

不,这是旧版本 android 上的一个安全桥,它提供了一种在用户不知情的情况下 services 到 运行 的方法 ForegroundServices已在 android 4.4.
中修复 您可以查看此 SO thread 了解更多信息。