约束布局ConstraintLayout的使用你知道吗

1.ConstraintLayout设置match_parent后约束失效

原因:官方文档已经说明,ConstraintLayout包裹的控件不支持match_parent取值。

解决:使用match_constraint,但是实际上并没有这个属性,所以一般使用0dp表示match_constraint。

Android官方原文描述:Important: MATCH_PARENT is not supported for widgets contained in a ConstraintLayout, though similar behavior can be defined by using MATCH_CONSTRAINT with the corresponding left/right or top/bottom constraints being set to "parent".

你可能感兴趣的:(Android,android,Constraint布局,约束布局,java)