赞
踩
本文根据本人学习和使用记录的内容。
ConstraintLayout,比较牛逼的一种布局,结合了其他几种布局的优点,也可以看做RelativeLayout的升级版。
使用ConstraintLayout需要引入:
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
首先很重要也是很基础的几个属性
app:layout_constraintTop_toTopOf="@id/id2"
app:layout_constraintTop_toBottomOf="@id/id2"
app:layout_constraintLeft_toLeftOf="@id/id2"
app:layout_constraintLeft_toRightOf="@id/id2"
app:layout_constraintRight_toLeftOf="@id/id2"
app:layout_constraintRight_toRightOf="@id/id2"
app:layout_constraintBottom_toTopOf="@id/id2"
app:layout_constraintBottom_toBottomOf="@id/id2"
app:layout_constraintBaseline_toBaselineOf="@id/id2"
app:layout_constraintStart_toEndOf="@id/id2"
app:layout_constraintStart_toStartOf="@id/id2"
app:layout_cons
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。