Not: Örnek tamamen SDK 21+ destekli cihazlar ile çalışmaktadır. Android Lollipop sürümüne sahip olmalısınız.
Kitkat dahil Lollipop'dan önceki hiçbir cihazda örnek çalışmayacaktır.
Notification notification = new Notification.Builder(this)
.setCategory(Notification.CATEGORY_MESSAGE)
.setContentTitle("Başlık")
.setContentText("merhaba serifgungor.com")
.setSmallIcon(R.mipmap.ic_launcher)
.setAutoCancel(true)
.setVisibility(0).build();
NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(1, notification );
Android Sürümü desteklemeyen cihazlar için, koşul üzerinden denetleyip, yine istediğiniz notification bildirimlerini gösterebilirsiniz.