某些应用程序包含通知,将其扫除无法删除。
我该如何管理这种行为?
Answers:
使用该标志,FLAG_ONGOING_EVENT
使其持久。
Notification notification = new Notification(icon, tickerText, when);
notification.flags = Notification.FLAG_ONGOING_EVENT;
您也可以检查FLAG_NO_CLEAR
我使用以下代码使通知持久化:
startForeground(yourNotificationId,notificationObject);
要使其不可见,只需执行以下操作:
stopForeground(true);