美文网首页
ConstraintLayout各种居中设置

ConstraintLayout各种居中设置

作者: 我给你想的好名字 | 来源:发表于2020-08-11 12:27 被阅读0次

1 全局居中

 app:layout_constraintBottom_toBottomOf="parent"
 app:layout_constraintEnd_toEndOf="parent"
 app:layout_constraintStart_toStartOf="parent"
 app:layout_constraintTop_toTopOf="parent"

2 顶部水平居中

 app:layout_constraintEnd_toEndOf="parent"
 app:layout_constraintStart_toStartOf="parent"
 app:layout_constraintTop_toTopOf="parent"

3 底部水平居中

app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"

相关文章

网友评论

      本文标题:ConstraintLayout各种居中设置

      本文链接:https://www.haomeiwen.com/subject/hogedktx.html