Android notification doesn't disappear after clicking the notifcation

前端 未结 7 695
逝去的感伤
逝去的感伤 2020-12-12 17:48

If got some issues with a notification I want to show in the notification bar. Although I set the notification flag to Notification.DEFAULT_LIGHTS & Notification.F

7条回答
  •  感情败类
    2020-12-12 18:22

    // Uses the default lighting scheme
    notification.defaults |= Notification.DEFAULT_LIGHTS;
    
    // Will show lights and make the notification disappear when the presses it
    notification.flags |= Notification.FLAG_AUTO_CANCEL | Notification.FLAG_SHOW_LIGHTS;
    

提交回复
热议问题