스크린 사이즈가 다양한 안드로이드 기기에서,
넓이 기준으로 해당 컨텐츠의 높이를 동적으로 변경하는 코드 샘플
//360:132 = w : h //132*w/360 = h int customHeight = screenWidth*132/360; ViewGroup viewGroup = (ViewGroup) dataLayout.findViewById(R.id.frame_layout); ViewGroup.LayoutParams params = viewGroup.getLayoutParams(); params.height = customHeight; viewGroup.requestLayout();