Notification.Builder
を使用してステータスバーに表示させようと思ったら、表示されなかった。
原因は、builder.setSmallIcon()
してなかったためだった。
よくみたら公式に書いてあった
When creating a notification, specify the UI content and actions with a NotificationCompat.Builder object. At bare minimum, a Builder object must include the following: - A small icon, set by setSmallIcon() - A title, set by setContentTitle() - Detail text, set by setContentText()上の3つは必要ということみたい
コメント