2013-08-27 60 views

回答

76

除了雄激素Selvas答案:

如果您使用的是NotificationCompat.Builderjust use

builder.setOngoing(true); 
+1

我更喜歡這個答案,因爲我使用的是Builder。 –

+0

這對我不起作用。它看起來像沒有「x」關閉按鈕的通知,但滑動手勢仍然可以完成。 –

+0

使用NotificationCompat構建器爲我工作。 – JoshuaTree

35

使用標誌FLAG_ONGOING_EVENT使其持久。

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

你也可以檢查,FLAG_NO_CLEAR

+1

謝謝合作對我:) –

+0

謝謝,你救了我的一天。 –