티스토리 뷰

안드로이드

앱 알림 설정 값 가져오기

성현아빠 2023. 12. 12. 09:52

개발하고 있는 앱에서 sound 재생을 추가하였는데,

알림 허용을 off로 했을경우 sound 재생을 막기 위해 

앱 알림 설정 값을 가져오는게 필요했어요.

 

 

NotificationManagerCompat.from(this).areNotificationsEnabled()

 

알림 허용 여부에 따른 설정값을 확인 할 수 있음.

 

https://developer.android.com/reference/android/app/NotificationManager#areNotificationsEnabled()

'안드로이드' 카테고리의 다른 글

BuildConfig setting change  (0) 2024.02.22
Notification sound 재생  (0) 2023.12.12
인앱 업데이트  (0) 2022.11.25
Activity 높이 변경  (1) 2022.09.26
안드로이드 웹뷰(WebView) 동영상 화면 축소 기능 문제  (0) 2022.05.16