2

こんにちは、アンドロイドの相対レイアウト設計に問題があります。中央のボタンの周りに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>

4

2 に答える 2

0

相対レイアウトの重力を使用しないでください代わりに、これを中央のImageButtonに使用してください

android:centerInParent = "true"

私はそれがうまくいくことを願っています

于 2012-12-08T01:38:14.820 に答える