<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/bstart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/bstart"
android:layout_gravity="center" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_gravity="center" >
<ImageButton
android:id="@+id/btn01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg1" />
<ImageButton
android:id="@+id/btn02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg2" />
<ImageButton
android:id="@+id/btn03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg4" />
<ImageButton
android:id="@+id/btn04"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg5" />
<ImageButton
android:id="@+id/btn05"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg6" />
<ImageButton
android:id="@+id/btn06"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg7" />
<ImageButton
android:id="@+id/btn07"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg8" />
<ImageButton
android:id="@+id/btn08"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/pg9" />
<ImageButton
android:id="@+id/blank"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:src="@drawable/pg3" />
</FrameLayout>
<ImageView
android:layout_width="150dp"
android:layout_height="150dp"
android:layout_gravity="center"
android:src="@drawable/pg" />
</LinearLayout>

위 START 버튼을 누르면 버튼 바로 밑에 뷰 화면에 퍼즐 게임이 시작되는데요.. 사이즈가 그 화면 그대로 퍼즐이 시작되네요 ㅠㅠㅠ 그리고 바로 밑에 이미지 화면은 그 결과화면인데.. 거기도 괜찮은거 같은데.. 퍼즐 하는 그 뷰 화면만 이상이 있는거 같네요... xml 부분에 어떻게 해야되는지... ㅠㅠ 그리고 퍼즐하는 그 뷰를 가운데로 위치하고 싶습니다.