我想在我的服務中有startForeground(int, id, notification)
,但爲此我需要一個通知參數。對於過去的3小時裏,我一直在試圖創建一個通知,但它只是將不起作用:爲什麼不兼容的類型?
Notification notification = new NotificationCompat.Builder(this)
.setContentTitle("Notification title")
.setSmallIcon(R.mipmap.ic_launcher)
.setContentText("Notification text");
以下是錯誤:
我試圖刪除和取代我所有的進口,但沒有任何作品。我怎樣才能解決這個問題?
感謝,
Ruchir
謝謝,我會在7分鐘內接受您的答案。我有一個關於'startForeground'的問題。什麼是ID? –
@RuchirBaronia這是通知的唯一標識 –
@RuchirBaronia:這是與[notify()']一起使用的相同ID(http://developer.android.com/reference/android/app/NotificationManager.html #notify(INT,%20android.app.Notification))。您可以使用它來識別此「通知」,以防您需要在「通知」仍未處理時更新其內容。 – CommonsWare