dp 단위로 set하고 싶을 때 (How to convert dps to pixels)
뿌리튼튼 CS/Android2015. 6. 18. 10:16
float scale = getResources().getDisplayMetrics().density;
int dpAsPixels = (int) (sizeInDp * scale + 0.5f); |
cs |
sizeInDP 자리에 원하는 dp값을 넣어주면 된다.
출처 : http://stackoverflow.com/questions/9685658/add-padding-on-view-programmatically
'뿌리튼튼 CS > Android' 카테고리의 다른 글
Service가 동작중인지 확인 (How to check if my service is running or not) (0) | 2015.06.24 |
---|---|
화면(screen) 사이즈 구하는 법 (How to get display size) (0) | 2015.06.23 |
D/skia: --- decoder->decode returned false (0) | 2015.06.16 |
File to Byte Array (File을 Byte배열로 변환) (0) | 2015.06.12 |
Android Studio에서 Library 추가시 쓸데없는 Duplicate 오류 대처법 (0) | 2015.06.12 |