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>
このコードを使用して、ボタンを左上から開始しました。
どうすれば修正できますか?