본문 바로가기
안드로이드

[android] [kotlin] Notification사용하기 (단순한 상단바 알림 만들기)

by 코드 이야기 2022. 2. 22.
728x90

 

다양한 앱에서 흔히 볼 수 있는 상단바에 떠있는 알람을 구현해보겠습니다.

아주 간단하고 단순한 예제이며, 화면상의 알림이 없고 상단바에만 생성되는 예제입니다.

화면의 알람, 알림의 구성, 알림에서 빠른 입력 등을 이용하거나 커스텀 해주고 싶다면 아래의 참고란을 확인해주세요.

 

 

dependencies

추가적으로 스타일을 주거나할 때 dependencies를 주기도 하지만 우선 정말 단순한 예제이기때문에 필요없습니다.

 

 

 

1. 알림을 위한 채널 생성

private fun createNotificationChannel(channelId: String, name: String, channelDescription: String) {
    // Create the NotificationChannel, but only on API 26+ because
    // the NotificationChannel class is new and not in the support library
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        val importance = NotificationManager.IMPORTANCE_DEFAULT // set importance
        val channel = NotificationChannel(channelId, name, importance).apply {
            description = channelDescription
        }
        // Register the channel with the system
        notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
        notificationManager?.createNotificationChannel(channel)
    }
}

 

Android 8.0(API 26)부터 채널을 생성해 알람을 주어야합니다.

채널은 알림을 카테고리별로 묶어 중요도를 설정하거나, 상태(ON/OFF)를 제어하도록 하는 등의 역할을 합니다.

 

 

 

2. 알림 생성과 나타내기

private fun displayNotification() {
    val notificationId = 66

    val notification = Notification.Builder(applicationContext, CHANNEL_ID)
        .setSmallIcon(R.drawable.icon_example)
        .setContentTitle("Example")
        .setContentText("This is Notification Test")
        .build()

    notificationManager?.notify(notificationId, notification)
}

알림의 내용과 같은 세부사항들을 설정하여 만들어줍니다.

notificationManager를 통해 상단바에 알림을 줍니다.

 

 

 

전체 코드 

차례로 MainActivity.ktactivity_main.xml입니다.

 

 

 

 

 

 

 

 

 

 


참고

 

https://developer.android.com/training/notify-user/build-notification#groovy

 

알림 만들기  |  Android 개발자  |  Android Developers

알림 만들기 알림은 사용 중이 아닌 앱의 이벤트에 관한 짧고 시기적절한 정보를 제공합니다. 이 페이지에서는 Android 4.0(API 레벨 14) 이상의 다양한 기능을 사용하여 알림을 만드는 방법을 설명

developer.android.com

 

https://youngest-programming.tistory.com/491#recentComments

 

[안드로이드] Notification(노티피케이션) 정리 및 예제

[공식문서] developer.android.com/training/notify-user/build-notification?hl=ko 알림 만들기  | Android 개발자  | Android Developers 알림은 사용 중이 아닌 앱의 이벤트에 관한 짧고 시기적절한 정보를..

youngest-programming.tistory.com

 

728x90

댓글