APP发送通知后,点击clear按钮,如何让通知不被清除?或者点击通知后,通知不消失?
[Solution]
APP发送通知时,通知需要添加flag:
notification.flags |= Notification.FLAG_ONGOING_EVENT;
或者
notification.flags |= Notification.FLAG_NO_CLEAR;
android 如何让通知不被清除或者点击后不消失
最新推荐文章于 2024-07-02 07:36:59 发布
APP发送通知后,点击clear按钮,如何让通知不被清除?或者点击通知后,通知不消失?
[Solution]
APP发送通知时,通知需要添加flag:
notification.flags |= Notification.FLAG_ONGOING_EVENT;
或者
notification.flags |= Notification.FLAG_NO_CLEAR;