Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在后台工作的玩家。我有通知。
问题:当我打开状态栏并按清除按钮时,我丢失了通知。有可能解决这个问题吗?
如果您使用它,Notification.Builder您可以调用setOngoing(true)它以使其无法为用户清除。如果您不使用 Builder,您可以setFlag(Notification.FLAG_ONGOING_EVENT, true)调用Notification
Notification.Builder
setOngoing(true)
setFlag(Notification.FLAG_ONGOING_EVENT, true)
Notification
更正:setFlag 也是 Builder 的一部分,而不是 Notification 的一部分