Skip to content

Instantly share code, notes, and snippets.

@Arunshaik2001
Created November 21, 2022 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arunshaik2001/49fec03dd2eea729d05b1f23a6c95a69 to your computer and use it in GitHub Desktop.
Save Arunshaik2001/49fec03dd2eea729d05b1f23a6c95a69 to your computer and use it in GitHub Desktop.
fun createNotificationWithLargeIcon(context: Context){
val icon = BitmapFactory.decodeResource(
context.resources,
R.drawable.aquarium
)
val notification = NotificationCompat.Builder(context, NotificationChannels.CHANNEL1)
.setSmallIcon(R.drawable.desk)
.setContentTitle("imageTitle")
.setContentText("imageDescription")
.setStyle(NotificationCompat.BigPictureStyle()
.bigPicture(icon))
.build()
with(NotificationManagerCompat.from(context)) {
notify(1234567, notification)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment