こんにちは、アンドロイドの相対レイアウト設計に問題があります。中央のボタンの周りに4つのボタンを配置することはできません。例として以下の XML を参照してください。コントロールはほとんど自明です。
助けてくれてありがとう。
レイアウト XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_test_wholeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:gravity="center_horizontal"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/main_test_relativeLayoutMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/main_panel_a"
android:gravity="center" >
<ImageButton
android:id="@+id/center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/more_baby_call" />
<ImageButton
android:id="@+id/top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/center"
android:src="@drawable/more_baby_call" />
<ImageButton
android:id="@+id/bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/center"
android:src="@drawable/more_baby_call" />
<ImageButton
android:id="@+id/right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/center"
android:src="@drawable/more_baby_call" />
<ImageButton
android:id="@+id/left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/center"
android:src="@drawable/more_baby_call" />
</RelativeLayout>
</RelativeLayout>