Android_Programma
[android] 전체 창 크기 구하기 whole screen size
k1rha
2012. 9. 10. 00:19
nowDisplay = ((WindowManager) getSystemService(WINDOW_SERVICE))
.getDefaultDisplay();
// 변수에 해상도 저장하기.
int width = nowDisplay.getWidth();
int height = nowDisplay.getHeight();