Recent Posts
Recent Comments
목록notificationchannel (1)
라떼는말이야
안드로이드 NotificationChannel의 VibrationPattern 설정하기 (진동 패턴) with Kotlin
fun createNotificationChannel(context: Context) { try { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager val notificationChannel = NotificationChannel( NOTIFICATION_CHANNEL_ID, "수업시작 알림", NotificationManager.IMPORTANCE_HIGH ) notificationChannel.description = "수업 시작 전 알림을 띄웁니다." notificat..
안드로이드
2021. 11. 5. 14:58