안드로이드 화면 크기 구하기
안드로이드로 작업 시 화면 크기를 구할 때 참고 할 수 있는 코드 입니다.
int width = getWindow().getWindowManager().getDefaultDisplay().getWidth(); int height = getWindow().getWindowManager().getDefaultDisplay().getHeight();
//
안드로이드로 작업 시 화면 크기를 구할 때 참고 할 수 있는 코드 입니다.
int width = getWindow().getWindowManager().getDefaultDisplay().getWidth(); int height = getWindow().getWindowManager().getDefaultDisplay().getHeight();