Prevent user from dismissing notification

守給你的承諾、 提交于 2019-12-03 06:27:53

问题


Some apps have notifications which can´t be dismissed by swiping them away.

How can I manage such behaviour?


回答1:


In addition to Andro Selvas answer:

If you are using the NotificationCompat.Builder, just use

builder.setOngoing(true);



回答2:


Use the flag,FLAG_ONGOING_EVENT to make it persistent.

Notification notification = new Notification(icon, tickerText, when);
    notification.flags = Notification.FLAG_ONGOING_EVENT;

Also you can check, FLAG_NO_CLEAR




回答3:


I used the below code to make my notification persistent:

startForeground(yourNotificationId,notificationObject);

To make it dismissable, just do the below:

stopForeground(true);



来源:https://stackoverflow.com/questions/18464810/prevent-user-from-dismissing-notification

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!