enter image description here我尝试将ImageView的layout_width和layout_height设置为match_parent,但它会自动更改为274dp和495dp。如何将它们设置为match_parent?
答案 0 :(得分:0)
您不能将match_parent用作ConstraintLayout子项的维度。您应该使用0dp,这意味着“match_constraint”并将边界约束到父母的边:
选择以下两种之一:
android:layout_width="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
或
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"