Notifications (android developers)
Notifications https://developer.android.com/guide/topics/ui/notifiers/notifications Set the notification content setSmallIcon() : 작은 아이콘 (필수) setContentTitle() : 제목 setContentText() : 내용 setPriority() : 안드로이드 7.1 이하 (안드로이드 8.0 이상은 channel importance 사용) NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID) .setSmallIcon(R.drawable.notification_icon) .setContentTitle(textTitle) .setContentText(textContent) .setPriority(NotificationCompat.PRIORITY_DEFAULT); 채널 ID 는 안드로이드 8.0 (API 26) 부터 필수. 그 이하는 무시된다. 내용은 1줄만 가능하다. 2줄 이상 쓰려면 setStyle() 이용. NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID) .setSmallIcon(R.drawable.notification_icon)…
Read More