要在Android中將按鈕(Button)上下排列,可以使用垂直線性布局(LinearLayout)并設置其方向為垂直(vertical)。
可以按照以下步驟進行操作:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!-- 添加按鈕控件 -->
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 1" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 2" />
<!-- 添加更多按鈕控件 -->
</LinearLayout>
這樣設置后,按鈕將按照垂直方向依次排列顯示。