如何使通知无法取消/不可删除的android

时间:2013-09-11 13:23:50

标签: android notifications

我有一个在后台工作的玩家。我有通知。

问题:当我打开状态栏并按清除按钮时,我丢失了通知。 有可能解决这个问题吗?

1 个答案:

答案 0 :(得分:5)

如果您使用Notification.Builder,则可以在其上调用setOngoing(true),使其无法为用户清除。 如果您没有使用Builder,可以在setFlag(Notification.FLAG_ONGOING_EVENT, true)

上致电Notification

更正:setFlag也是Builder的一部分,而不是Notification