赞
踩
能够很好的适配不同屏幕大小的机型
比重:
app:layout_constraintHorizontal_weight=“1”//水平方向比重为1
相对于父类的百分比
android:layout_width=“0dp”
app:layout_constraintWidth_percent=“0.5”//先设置为0dp,释放后再设置百分比
宽高比例
先设置高或者宽一个是0dp
app:layout_constraintDimensionRatio=“h,2:1”//h,宽:高 w,高:宽
拉扯控件的位置
app:layout_constraintTop_toTopOf=“parent”
app:layout_constraintBottom_toBottomOf=“parent”
app:layout_constraintLeft_toLeftOf=“parent”
app:layout_constraintRight_toLeftOf="@id/button"
偏移bias
app:layout_constraintHorizontal_bias=“0.5”
从上往下,从左到右逐渐为1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。