我有一个包含 7 个按钮的布局,我希望其中 6 个位于屏幕中央,最后一个位于底部。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/background"
    android:orientation="vertical" >
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:orientation="vertical" >
        <ImageButton
            android:id="@+id/account_but"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="50dip"
            android:background="@null"
            android:contentDescription="@string/accountDesc"
            android:src="@drawable/boton_usos" />
        <ImageButton
            android:id="@+id/alquilar_but"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:background="@null"
            android:contentDescription="@string/alquilarDesc"
            android:src="@drawable/boton_alquilar" />
        <ImageButton
            android:id="@+id/paradas_but"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:background="@null"
            android:contentDescription="@string/paradasDesc"
            android:src="@drawable/boton_paradas" />
        <ImageButton
            android:id="@+id/noticias_but"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:background="@null"
            android:contentDescription="@string/noticiasDesc"
            android:src="@drawable/boton_noticias" />
        <ImageButton
            android:id="@+id/incidencia_but"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:background="@null"
            android:contentDescription="@string/incidenciaDesc"
            android:src="@drawable/boton_incidencia" />
        <ImageButton
            android:id="@+id/informacion_but"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:background="@null"
            android:contentDescription="@string/infoDesc"
            android:src="@drawable/boton_informacion" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:orientation="vertical" >
        <ImageButton
            android:id="@+id/sabadell_but"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/banner_sabadell"
            android:contentDescription="@string/infoDesc" />
    </LinearLayout>
</LinearLayout>
使用此代码,我得到了从左上角开始的按钮。
我该如何解决?
