※ Screen Info 가져오기
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
※ Density 가져오기 - 0.75, 1.0, 1.5 등의 값을 가지며 이 값에 dp을 곱하면 pixel 단위 값을 구할 수 있음
float dip = metrics.density;
※ Resolution Width : metrics.widthPixels;
※ Resolution Height : metrics.heightPixels;
※ DPI : metrics.densityDpi
'Mobile > Android' 카테고리의 다른 글
[Android] TaskManager (0) | 2011.11.11 |
---|---|
[Android] 외부 폰트 사용 (0) | 2011.11.10 |
android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views (2) | 2011.11.05 |
Your content must have a TabHost whose id attribute is 'android.R.id.tabhost' (1) | 2011.11.03 |
안드로이드 Manager 종류 (0) | 2011.11.02 |