constraintlayout居中
时间: 2023-04-28 17:03:04 浏览: 628
使用ConstraintLayout实现居中布局的方法如下:
1. 在布局文件中添加一个ConstraintLayout容器。
2. 在容器中添加一个要居中的控件,例如TextView。
3. 给TextView设置水平和垂直方向的约束条件,使其分别与容器的中心点对齐。
4. 设置TextView的宽度和高度,可以使用wrap_content或者具体的数值。
5. 最后,预览布局效果,可以看到TextView已经成功居中了。
示例代码如下:
```
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="居中文本"
app:layout_constraintHorizontal_centerInParent="true"
app:layout_constraintVertical_centerInParent="true"/>
</androidx.constraintlayout.widget.ConstraintLayout>
```
阅读全文