Develop
2016.10.21 11:16
[android] dp, px 서로 변환
조회 수 7603 댓글 0
# Context가 있는 Activity 내부용 함수
//dp를 px로 변환 (dp를 입력받아 px을 리턴) public float convertDpToPixel(float dp){ Resources resources = this.getResources(); DisplayMetrics metrics = resources.getDisplayMetrics(); float px = dp * ((float)metrics.densityDpi / DisplayMetrics.DENSITY_DEFAULT); return px; } //px을 dp로 변환 (px을 입력받아 dp를 리턴) public float convertPixelsToDp(float px){ Resources resources = this.getResources(); DisplayMetrics metrics = resources.getDisplayMetrics(); float dp = px / ((float)metrics.densityDpi / DisplayMetrics.DENSITY_DEFAULT); return dp; }
# Context를 변수로 받아서 쓰는 유틸 라이브러리용 Static 함수
//dp를 px로 변환 (dp를 입력받아 px을 리턴) public static float convertDpToPixel(float dp, Context context){ Resources resources = context.getResources(); DisplayMetrics metrics = resources.getDisplayMetrics(); float px = dp * ((float)metrics.densityDpi / DisplayMetrics.DENSITY_DEFAULT); return px; } //px을 dp로 변환 (px을 입력받아 dp를 리턴) public static float convertPixelsToDp(float px, Context context){ Resources resources = context.getResources(); DisplayMetrics metrics = resources.getDisplayMetrics(); float dp = px / ((float)metrics.densityDpi / DisplayMetrics.DENSITY_DEFAULT); return dp; }
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
277 | System/OS | How to Setup an Email Server on CentOS 7 | hooni | 2018.04.05 | 5911 |
276 | System/OS |
무료로 HTTPS 적용하기 (Lets' Encrypt)
![]() |
hooni | 2017.02.16 | 5905 |
275 | Etc |
아이폰의 터치스크린 정확도
![]() |
hooni | 2015.04.01 | 5861 |
274 | Develop | [ios] UITableView 특정 Row만 Update | hooni | 2014.04.08 | 5791 |
273 | Develop |
[php] Connect to Firebase Console in Laravel
![]() |
hooni | 2018.05.09 | 5727 |
272 | Database | [mysql] ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. | hooni | 2017.12.15 | 5716 |
271 | Etc |
영어. 불규칙 동사 정리
![]() |
hooni | 2017.10.04 | 5681 |
270 | Develop |
[ios] 웹뷰 history.back() ㅋㄷ
![]() |
hooni | 2016.06.27 | 5667 |
269 | System/OS |
How to Install and Use wget on Mac
![]() |
hooni | 2020.09.03 | 5570 |
268 | Develop | [js] show/hide 이벤트 감시 (Observing show/hide event) | hooni | 2021.02.03 | 5559 |
267 | Develop |
[php][laravel] 라라벨 개발환경 세팅하기 (Mac, Window)
2 ![]() |
hooni | 2017.12.15 | 5546 |
266 | Develop | [Android Error] The number of method references in a .dex file cannot exceed 64K | hooni | 2016.11.10 | 5480 |