Develop
2016.10.21 11:16
[android] dp, px 서로 변환
조회 수 8588 댓글 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;
}| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|---|
| 1094 | Database | [mysql] MySQL 한글 깨짐 현상 해결하기(UTF8) | hooni | 2017.12.01 | 8678 |
| 1093 | Etc |
RSVP 란?
|
hooni | 2017.11.22 | 4333 |
| 1092 | Database | [mysql] 중복데이터 삭제하는 초간단 쿼리 | hooni | 2017.11.22 | 6404 |
| 1091 | System/OS | [mac] How to uninstall MySQL on Mac OS. | hooni | 2017.11.08 | 3540 |
| 1090 | System/OS | OpenSSL로 ROOT CA 생성 및 SSL 인증서 발급하기 | hooni | 2017.10.28 | 3871 |
| 1089 | System/OS |
무료로 HTTPS 적용하기 (Let's Encrypt)
|
hooni | 2017.10.28 | 4125 |
| 1088 | Etc | How to completely Uninstall Coda | hooni | 2017.10.24 | 6403 |
| 1087 | Etc |
영어. 불규칙 동사 정리
|
hooni | 2017.10.04 | 6591 |
| 1086 | System/OS | [linux] iptables 초간단 세팅 스크립트 | hooni | 2017.09.26 | 3456 |
| 1085 | Develop |
[ios] VIN Scanner (VIN barcode) 스캐너
|
hooni | 2017.09.16 | 2990 |
| 1084 | System/OS | [mac] Homebrew/rvm/cocoapod setting | hooni | 2017.07.29 | 3640 |
| 1083 | Etc |
캘리포니아 운전면허 문제
|
hooni | 2017.07.22 | 4565 |