您可以使用android:layout_margin屬性來設置Android按鈕之間的間距。
例如,以下是一個按鈕布局,其中包含兩個按鈕,它們之間有10dp的間距:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="按鈕1"
android:layout_marginEnd="10dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="按鈕2"/>
</LinearLayout>
在這個例子中,通過在第一個按鈕上設置android:layout_marginEnd="10dp"
,在按鈕之間創建了10dp的間距。您可以根據需要調整間距的大小。