하단에 아래와 같이 버튼을 만들었습니다.
<LinearLayout
android:id="@+id/web_view_button_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="10"
android:background="@drawable/menu_bg">
<Button android:id="@+id/webview_button_back"
android:background="@drawable/menu_01_off"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<View android:id="@+id/dummy_view1" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1"></View>
<Button android:id="@+id/webview_button_noti"
android:background="@drawable/menu_02_off"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<View android:id="@+id/dummy_view2" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1"></View>
<Button android:id="@+id/webview_button_mind"
android:background="@drawable/menu_03_off"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<View android:id="@+id/dummy_view3" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1"></View>
<Button android:id="@+id/webview_button_main"
android:background="@drawable/menu_04_off"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
그런데 새로 모드에서는 제대로 나오는데
가로모드시에 새로 높이가 줄어들면서 이미지들이 늘어납니다.
찌그러져 보이는거죠..
이게 왜 이런 현상이 발상할까요?
도움 부탁드립니다.




버튼의 layout_width와 layout_height가 wrap_content라서 그런것 같은데... 고정사이즈로 하시고 싶다면 크기를 px로 해서 넣으시면 될듯한데요~