赞
踩
https://developer.android.google.cn/reference/android/support/constraint/ConstraintLayout
ConstrainLayout是一个允许开发者灵活地设置控件的位置和大小的ViewGroup。
只要你使用的Android系统版本在9以上,你便可以通过添加依赖的方式来使用ConstrainLayout.
implementation ‘com.android.support.constraint:constraint-layout:1.1.3’
相对定位是ConstrainLayout构建布局的一种基本方式。相对定位约束可以帮助我们通过一个给定的Widget来摆放另外一个Widget。我们可以在横纵两个方向上约束Widget。
横向: left, right, start and end sides
纵向: top, bottom sides and text baseline
一般思路是将一个 Widget的给定侧约束到其他Widget的另一侧。
比如,把button B放置到butt
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。