如何使ImageView的宽度和高度等于父ConstraintLayout的宽度?因此它将显示全角正方形ImageView。
通常如何将某个小部件的高度设置为等于其他小部件的宽度?
答案 0 :(得分:1)
以下布局将在父级ConstraintLayout
的中心放置一个蓝色正方形图像。关键部分是app:layout_constraintDimensionRatio="1:1"
。有关详细信息,请参见documentation。
您还可以将小部件的一个尺寸定义为另一尺寸的比例。为此,您需要至少将一个约束尺寸设置为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>