将其都放在同一个布局中,布局长宽设wrap_content
然后让较短的宽设match_parent
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
>
<Button
android:
/>
</LinearLayout>
实现效果: