要在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>
这样设置后,按钮将按照垂直方向依次排列显示。