Android Studio如何让两个按钮右对齐
时间: 2023-11-02 20:09:39 浏览: 139
Android动态添加右边对齐按钮Demo
你可以使用 ConstraintLayout 来实现两个按钮右对齐。将两个按钮分别放在 ConstraintLayout 中,然后用约束条件将它们对齐,如下所示:
```
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1"
app:layout_constraintRight_toLeftOf="@+id/button2"
app:layout_constraintTop_toTopOf="parent"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
```
这样就可以实现两个按钮右对齐了。
阅读全文