constraintlayout相对定位属性用法总结
主要使用两个控件TextView来展示这些属性,下面就简称为text1和text2两个控件,使用效果图来比较直接看效果大概属性都是这样写的,第一个框为当前控件属性,后一个为相对控件的属性
- 当前text2和text1的左侧对齐,左对齐
app:layout_constraintLeft_toLeftOf="@id/tex1"
- 当前text2的左侧和text1的右侧对齐
app:layout_constraintLeft_toRightOf="@id/tex1"
- 当前text2的右侧和text1的右侧对齐,右对齐
app:layout_constraintRight_toRightOf="@id/tex1"
- 当前text2的右侧和text1的左侧对齐
app:layout_constraintRight_toLeftOf="@id/tex1"
- text2的上头部和text1的上头部对齐
app:layout_constraintTop_toTopOf="@id/tex1"
- text2的上头部和text1的下头部对齐
app:layout_constraintTop_toBottomOf="@id/tex1"
- text2的下部和text1的下部对齐
app:layout_constraintBottom_toBottomOf="@id/tex1"
- 当前text2的下部和text的上部对齐
app:layout_constraintBottom_toTopOf="@id/tex1"
首先介绍一下属性名称
- text2里面的文字和text1里面的文字下部对齐
app:layout_constraintBaseline_toBaselineOf="@id/tex1"
- BaseLine也就是text2里面文字基线,所以是text2文字基线对齐text1控件的下部
app:layout_constraintBaseline_toBottomOf="@id/tex1"
- text2里面文字基线对齐text1控件的上部
app:layout_constraintBaseline_toTopOf="@id/tex1"
- 效果和同left_toRightOf,text2左侧对齐text1右侧
app:layout_constraintStart_toEndOf="@id/tex1"
- 效果同left_toLeftOf左对齐
app:layout_constraintStart_toStartOf="@id/tex1"
- 效果同right_toLeftOf,text2右侧对齐text1左侧
app:layout_constraintEnd_toStartOf="@id/tex1"
- 效果同right_toRightOf,text2和text1右对齐
app:layout_constraintEnd_toEndOf="@id/tex1"