Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 403 Error
- application
- jsontokotlinclass
- Blinking
- shotcut
- webview
- prettyJson
- notification setting
- App Startup
- Android
- datastore
- requestPermission
- circlecrop
- itemAnimator
- onReceivedSslError
- ExifInterface
- BottomSheetDialog
- room
- 이미지 gps
- LOG
- kdoc-generator
- Git
- Plugins
- ActivityResultContracts
- onResume
- notification bar
- ChromeCustomTab
- skipcollapsed
- notification
- navigation component
Archives
- Today
- Total
Debbi Story
[Android] 알림 설정 이동 하기! 본문
728x90
앱 알림 설정 화면으로 이동하는 방법이 Oreo 버전 이상 이하 버전 다르게 처리해 주어야 합니다!
fun presentNotificationSetting(context: Context) {
val intent = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
notificationSettingOreo(context)
} else {
notificationSettingOreoLess(context)
}
try {
context.startActivity(intent)
}catch (e: ActivityNotFoundException) {
e.printStackTrace()
}
}
@RequiresApi(Build.VERSION_CODES.O)
fun notificationSettingOreo(context: Context): Intent {
return Intent().also { intent ->
intent.action = Settings.ACTION_APP_NOTIFICATION_SETTINGS
intent.putExtra(Settings.EXTRA_APP_PACKAGE, context.packageName)
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
}
fun notificationSettingOreoLess(context: Context): Intent {
return Intent().also { intent ->
intent.action = "android.settings.APP_NOTIFICATION_SETTINGS"
intent.putExtra("app_package", context.packageName)
intent.putExtra("app_uid", context.applicationInfo?.uid)
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
}
추가로 앱 알림 설정 여부를 가져오는 방법 입니다!
NotificationManagerCompat.from(context).areNotificationsEnabled()
'안드로이드 > Tip' 카테고리의 다른 글
[Android] 스크린 사이즈 구하기! (0) | 2021.11.08 |
---|---|
[Android] 키보드 내리기 (0) | 2021.11.01 |
Notification badge 설정하기! (0) | 2021.10.26 |
ExifInterface 이미지 위치정보 가져오기 (0) | 2021.09.04 |
Glide circle 이미지에 테두리선 그리기 (0) | 2021.07.06 |