I'm currently showing notification with this:
NotificationCompat.Builder noBuilder = new NotificationCompat.Builder(this)
.setSound(sound)
.setSmallIcon(R.drawable.h)
.setLargeIcon(largeIcon)
.setContentTitle(title)
.setFullScreenIntent(pendingIntent,true)
.setContentText(message)
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(message))
.setAutoCancel(true)
.setPriority(Notification.PRIORITY_HIGH)
.setContentIntent(pendingIntent);