Theme.dialog activity 썸네일형 리스트형 Theme.Dialog 인 Activity의 사이즈 조절 activity의 setContentView 이후에 Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();int width = (int) (display.getWidth() * 0.7); //Display 사이즈의 70%int height = (int) (display.getHeight() * 0.9); //Display 사이즈의 90%getWindow().getAttributes().width = width;getWindow().getAttributes().height = height; 요런 식으로 window의 layoutParam을 변경해 주면 됩니다.requestFeature와 .. 더보기 이전 1 다음