Here is the code that I use to show a notification.
notification = new Notification.Builder(context).setContentIntent(contentIntentTwo)
.setContentTitle("App name").setSmallIcon(R.drawable.ic_launcher).setLargeIcon(notificationLargeIconBitmap).getNotification();
The notification and notification icon is displayed in the notification drop-down box, but not in the status bar in the candy.
Here's what it looks like a candy:

This only happens on candy.
source
share