画面に 2 つのボタン (それぞれ 50 dp の幅) を平行に配置するだけです。最初のものは 10 dp の余白を残して配置する必要があります。
ただし、2 番目のボタンは、中央 (水平方向) から 30 dp のマリンを残して画面に配置する必要があります。私がする必要があるのは、矢印で示した場所から開始することです。
私のデザインxmlは次のとおりです。LinearLayout または RelativeLayout を使用することは重要ではありません。
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#634785" >
<Button
android:id="@+id/button1"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:text="B1"
android:layout_marginLeft="10dp" />
<Button
android:id="@+id/button2"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:text="B2"
android:layout_centerHorizontal="true"
android:layout_marginLeft="30dp />
</RelativeLayout>