在NotificationChannel之前,通过通知构建器设置通知LED闪烁率的API是使用此method Notification.Builder setLights (int argb, int onMs, int offMs)
。
但现在不推荐使用API,而使用Notification Channel我们应该使用只需要布尔值的one void enableLights (boolean lights)
。
有一个单独的method来设置颜色指示灯,但没有设置闪光速率。有没有办法用NotificationChannel控制闪烁占空比?