要将Android按钮放置在屏幕底部,可以使用以下方法:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- 添加其他视图元素 -->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="Button" />
</LinearLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 添加其他视图元素 -->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bottomButton"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
无论你选择使用LinearLayout还是ConstraintLayout,都可以实现将按钮放置在Android屏幕底部。