英文:
How to enable notifications on lock screen on android
问题
我的应用运行良好,而且使用 FCM 也可以收到通知。但是,通知只会显示在状态栏,而不会显示在锁屏界面,也不会有 LED 指示灯闪烁。
我可以让这些功能工作,但是我必须在我的设备应用参数中启用锁屏通知、LED 等功能。
如何让我的应用默认情况下启用这些参数?我没有找到任何相关的权限可以做到这一点
最好的问候
英文:
My app work well, and notifications with FCM too. But, notifications only show in status bar, and not on lock screen and no led light is blinking.
I can do this working, but I have to enable lock screen notification, led, ... in my device application parameters.
How can my app have theses parameters enabled by default ? I did not found any permission to do that
Best regards
答案1
得分: 1
这可能取决于通知渠道的配置。在8.0及以上版本中,通道/通知的重要性设置为IMPORTANCE_MIN
,在8.0以下版本中,优先级设置为PRIORITY_MIN
。检查您的配置并增加重要性/优先级。
英文:
this may depend on Notification Channels configuration. On 8.0+ channel/notification has importance set to IMPORTANCE_MIN
, below 8.0 has priority set to PRIORITY_MIN
. Inspect your configuration and increase importance/priority
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论