ConstraintLayout 遇到的坑

ConstraintLayout 在使用 app:layout_constraintVertical_bias="0.3" 一直无效,

其实只要像下面这样设置就可以了

app:layout_constraintTop_toTopOf="parent"

app:layout_constraintBottom_toBottomOf="parent"

你可能感兴趣的:(ConstraintLayout 遇到的坑)