【发布时间】:2013-08-30 03:55:39
【问题描述】:
有些应用的通知无法通过滑动来关闭。
我该如何管理这种行为?
【问题讨论】:
标签: android notifications android-notifications dismiss
有些应用的通知无法通过滑动来关闭。
我该如何管理这种行为?
【问题讨论】:
标签: android notifications android-notifications dismiss
【讨论】:
使用标志FLAG_ONGOING_EVENT 使其持久化。
Notification notification = new Notification(icon, tickerText, when);
notification.flags = Notification.FLAG_ONGOING_EVENT;
您也可以查看FLAG_NO_CLEAR
【讨论】:
我使用以下代码使我的通知持久化:
startForeground(yourNotificationId,notificationObject);
要让它消失,只需执行以下操作:
stopForeground(true);
【讨论】: