728x90

Notification 2

안드로이드(Android) Pending Intent | Notification 에서 앱으로 이동

안드로이드(Android) Pending Intent | Notification 에서 앱으로 이동 Pending Intent - Notification 메시지를 통해 애플리케이션의 Activity를 실행할 수 있는데 이 때 사용하는 것이 Pending Intent이다. - Pending Intent를 통해 실행되는 Activity로 데이터를 전달할 수도 있다. 전체 소스코드 MainActivity.java package kr.co.softcampus.pendingintent; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManager; import android.a..

APP 2021.03.10

안드로이드 알림 메시지, Android Notification

안드로이드 알림 메시지, Android Notification Notification - Notification은 애플리케이션과 별도로 관리되는 메시지 - Notification 메시지를 OS에게 요청하면 OS는 알림 창 영역에 알림 메시지를 표시한다. - 화면을 가지지 않는 실행단위에서 메시지를 표시할 때 주로 사용 Notification의 특징 - 사용자가 메시지를 확인하거나 제거하기 전까지 메시지가 유지되어 있다. - 메시지를 터치하면 지정된 Activity가 실행되어 애플리케이션 실행을 유도할 수 있다. Notification Channel - 안드로이드 8.0부터 새롭게 추가된 기능으로 사용자가 애플리케이션의 알림 메시지를 출력하지 않도록 설정하면 모든 메시지가 출력되지 않는다. - Notifi..

APP 2021.03.10
728x90