본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[android] screen size 와 px, dp, config 에 대한 핵심 정리

by 돼지왕 왕돼지 2013. 8. 20.
반응형


 안드로이드, screen size 와 px, dp, config 에 대한 핵심 정리

 

[android] screen size 와 px, dp, config 에 대한 핵심 정리


mdpi 

320px X 480 px


hdpi - mdpi 의 1.5배

480px X 800 px 

320dp X 533dp


xhdpi - mdpi 의 2배

720px X 1280 px

360dp X 640dp







Programmatically Best Resource 채택하기


Configuration config = getResources().getConfiguration();

if (config.smallestScreenWidthDp >= 600)

setContentView(R.layout.main_activity_tablet);

else

setContentView(R.layout.main_activity);


Configuration 에는 ScreenWidthDp, ScreenHeightDp 등의 값들이 있다.




반응형

댓글