在我的约束布局中,我有一个方形的ImageView。其宽度由GuideLines定义:
<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintTop_toTopOf="@id/guideline_h1"
app:layout_constraintLeft_toLeftOf="@id/guideline100"
app:layout_constraintRight_toLeftOf="@+id/guideline010"
app:srcCompat="@drawable/choice04"/>
当然,我现在需要定义其constraintBottom参数。但是,使用其他指南并不是一种好方法,因为在各种屏幕尺寸上,%值可能会改变比率。由于图像是正方形,我需要我的ImageView宽度为屏幕的5%到45%,我可以使用指南来实现,并且它的高度是相同的。
答案 0 :(得分:1)
来自@pskink的评论正是我所寻求的。行:
app:layout_constraintDimensionRatio="1:1"
诀窍。