ConstraintLayout stretches outside the screen

原文链接
wrap_content只会测量自己,不受最终约束的限制
match_constraints(0dp)将根据约束限制小部件的大小,但如果wrap_content比约束还小也不适用

更好的View尺寸控制

width = 0dp
layout_constraintWidth_default = spread

ps:在1.1.0 beta 2中可以使用

app:layout_constrainedWidth=”true|false”
app:layout_constrainedHeight=”true|false”

你可能感兴趣的:(ConstraintLayout stretches outside the screen)