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
- application
- jsontokotlinclass
- 이미지 gps
- itemAnimator
- Android
- shotcut
- LOG
- notification setting
- ExifInterface
- notification bar
- ActivityResultContracts
- onResume
- ChromeCustomTab
- room
- navigation component
- onReceivedSslError
- prettyJson
- datastore
- requestPermission
- App Startup
- Git
- BottomSheetDialog
- circlecrop
- kdoc-generator
- Blinking
- Plugins
- notification
- webview
- skipcollapsed
- 403 Error
Archives
- Today
- Total
Debbi Story
[Android] 스크린 사이즈 구하기! 본문
728x90
https://developer.android.com/reference/android/view/WindowManager#getDefaultDisplay()
기존의 WindowManager의 getDefaultDisplay가 API Level 30부터 Deprecated 되었습니다.
가로
fun getScreenWidth(context: Context): Int {
val wm = context.getSystemService(Context.WINDOW_SERVICE) as WindowManager
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
val windowMetrics = wm.currentWindowMetrics
val insets = windowMetrics.windowInsets
.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars())
windowMetrics.bounds.width() - insets.left - insets.right
} else {
val displayMetrics = DisplayMetrics()
wm.defaultDisplay.getMetrics(displayMetrics)
displayMetrics.widthPixels
}
}
세로
fun getScreenHeight(context: Context): Int {
val wm = context.getSystemService(Context.WINDOW_SERVICE) as WindowManager
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
val windowMetrics = wm.currentWindowMetrics
val insets = windowMetrics.windowInsets
.getInsetsIgnoringVisibility(WindowInsets.Type.systemBars())
windowMetrics.bounds.height() - insets.bottom - insets.top
} else {
val displayMetrics = DisplayMetrics()
wm.defaultDisplay.getMetrics(displayMetrics)
displayMetrics.heightPixels
}
}
'안드로이드 > Tip' 카테고리의 다른 글
[Android] Permission 거부 처리 ActivityResultContracts (0) | 2021.11.17 |
---|---|
[Android] 네트워크 연결 감지하기! (0) | 2021.11.14 |
[Android] 키보드 내리기 (0) | 2021.11.01 |
[Android] 알림 설정 이동 하기! (0) | 2021.10.28 |
Notification badge 설정하기! (0) | 2021.10.26 |