我们如何使 ImageView 宽度和高度等于父约束布局的宽度?因此,它显示一个全宽的方形图像视图。
一般来说,如何将某个小部件的高度设置为等于另一个小部件的宽度?
以下布局将在父ConstraintLayout
的中心放置一个方形蓝色图像。关键是app:layout_constraintDimensionRatio="1:1"
.有关详细信息,请参阅文档。
您还可以将小部件的一个维度定义为另一个维度的比率。为此,您需要至少将一个约束维度设置为 0dp(即 MATCH_CONSTRAINT(,并将属性layout_constraintDimensionRatio设置为给定比率。
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@android:color/holo_blue_light"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>