Created
June 1, 2017 18:58
-
-
Save akbarsha03/6b88bec6b4d435aba159631999476e0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NotificationManagerCompat.from(context).apply { | |
notify(101, NotificationCompat.Builder(context).run { | |
setStyle(NotificationCompatV4.InboxStyle().addLine("You have new message")) | |
setContentTitle(getNotificationTitleForPreNougat(dialog, dialogMessages)) | |
setAutoCancel(true) | |
setContentIntent(getPendingIntent())) | |
setSmallIcon(R.drawable.ic_launcher) | |
build() | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment