Notice
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 | 31 |
Tags
- gradle
- 안드로이드
- Unity
- webcam
- camera
- 리스트뷰
- GlobalComponent
- Round Square
- Ext
- UI
- 레이아웃
- Android
- 그래들
- 조이스틱
- ListvView
- Handelr
- bottom
- WebCamTexture
- 스피너
- DP
- layout
- 유니티
- spinner
- GPS
Archives
- Today
- Total
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