<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<Button
android:id="@+id/up"
android:text="@string/up1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/down"/>
<Button
android:id="@+id/down"
android:text="@string/down1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>
は、ここに私のコードだと私はダウンボタンが一番下になりたいです。あなたが見ることができるように、私は上のボタンを整列させようとすると、私は親の底を整列させます。これどうやってするの。私は両方のボタンが画面の下部にお互いの上にあることを忘れないでください。ごめんなさい。揃え垂直方向に画面の下部にある2つのボタン
[OK]を。 XMLで初めて、それは私の頭上を完全に飛んだ。 – EnderGeneral149