Notice
Recent Comments
Link
JY-Dev Tech Blog
안드로이드(Android) - Int to Dp , Float to Dp (Dp 변환) 본문
프로그램 내부에서 Dp 값을 변환하는 방법에 대해 알려드리겠습니다.
[Kotlin]
Int to Dp
val Int.dp: Int
get() = (this * Resources.getSystem().displayMetrics.density + 0.5f).toInt()
Float to Dp
val Float.dp: Int
get() = (this * Resources.getSystem().displayMetrics.density + 0.5f).toInt()
'안드로이드 > 그 외 여러가지' 카테고리의 다른 글
안드로이드(Android) - Handler Deprecated? (1) | 2020.08.13 |
---|---|
안드로이드(Android) - View Set Id dynamically(View Id 동적 Set) (0) | 2020.08.11 |
안드로이드(Android) - Drawable Arraylist (이미지 배열) (0) | 2020.08.07 |
안드로이드(Android) - Gps On Off 확인 (위치 서비스 활성화) (1) | 2020.07.16 |
리소스에서 Drawable Localization (1) | 2018.11.05 |
Comments