将ImageView的宽度和高度设置为match_parent

时间:2017-09-30 18:02:23

标签: android

enter image description here我尝试将ImageView的layout_width和layout_height设置为match_parent,但它会自动更改为274dp和495dp。如何将它们设置为match_parent?

1 个答案:

答案 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"