notification
-
Android Notification exampleAndroid 외 개발 2020. 1. 7. 16:07
Notification을 실행하기 위해서 먼저 Builder를 구성하였습니다. val notificationBuilder: NotificationCompat.Builder = NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID) .apply { setSmallIcon(R.drawable.icon) setDefaults(Notification.DEFAULT_ALL) setContentTitle(title) setContentText(content) setAutoCancel(false) setWhen(System.currentTimeMillis()) priority = NotificationCompat.PRIORITY_MAX setContentIntent(p..