防止用户解除通知
有些应用程序的通知不能通过将其擦除而解除。
我怎样才能pipe理这样的行为?
除了Andro Selvas回答:
如果您正在使用NotificationCompat.Builder ,请使用
builder.setOngoing(true);
使用FLAG_ONGOING_EVENT
标志使其持久。
Notification notification = new Notification(icon, tickerText, when); notification.flags = Notification.FLAG_ONGOING_EVENT;
你也可以检查FLAG_NO_CLEAR