DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
int w = metrics.widthPixels;
int h = metrics.heightPixels;
만약 activity가 아닌 곳에서 한다면 context로 불러오는 방법
((WindowManager) context.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay().getMetrics(metrics);
':::::: STUDY :::::: > Android' 카테고리의 다른 글
Failed to allocate memory: 8 (0) | 2013.10.24 |
---|---|
Bitmap & BitmapDrawable (0) | 2013.09.12 |
AppWidget 관련 (0) | 2013.08.01 |
[Tip] eclipse에서 xml화면에서 Ctrl+F11로 Run 안될때 (2) | 2013.05.02 |
android.view.InflateException: Binary XML file line #Num:Error inflating class className (0) | 2013.01.23 |