Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- computervision
- objectdetection
- pdf merge
- google cloud
- 파이썬 #업무자동화 #python
- pyautogui
- 사무자동화
- Text To Speech
- YOLOv7
- pypdf2
- Google API
- DeepLearning
- 업무자동화
- YOLOv5
- Text-to-Speech
- yolo
- processstart
- 사무자동화 #Selenium
- ironpython
- pythonnet
Archives
- Today
- Total
Doarchive
[Android] 스크린 사이즈 구하기 'getDefaultDisplay()' was deprecated 본문
회사에 있는 코클린 프로젝트를 빌드 해보려니 뜨는 수 많은 deprecated method 들....
'getDefaultDisplay()' was deprecated in API level 30.
'getRealMetrics()' was deprecated in API level 31.
getSize() was deprecated in API level 30.
Deprecated "windowManager.defaultDisplay.getMetrics(displayMetrics)"
display?.getSize(size) getMetrics was deprecated
화면 사이즈 정보를 가져오는 메서드 수정
private fun screenValue() {
val displayMetrics = DisplayMetrics()
val defaultDisplay = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) {
DisplayManagerCompat.getInstance(this).getDisplay(Display.DEFAULT_DISPLAY)
} else {
@Suppress("DEPRECATION")
windowManager.defaultDisplay
}
defaultDisplay?.let {
val displayContext = createDisplayContext(it)
displayContext.resources.displayMetrics.let { metrics ->
val width = metrics.widthPixels
val height = metrics.heightPixels
}
}
}
728x90
'Mobile > Android' 카테고리의 다른 글
안드로이드 스튜디오 에 삼성 갤럭시 디바이스 에뮬레이터 추가하기 (0) | 2023.08.07 |
---|---|
안드로이드 View Binding 사용하기 (0) | 2023.06.26 |
[Android] Could not find method kapt() for arguments [androidx.room:room-compiler:2.5.0] (0) | 2023.06.16 |
[Android] The 'kotlin-android-extensions' Gradle plugin is no longer supported. 에러 해결 / Kotlin Parcelize 사용하기 (0) | 2023.03.23 |
안드로이드 스튜디오 arr 파일 만들기 (0) | 2020.04.02 |