ImageView的高度与指南的宽度相同

问题描述 投票:-2回答:1

在我的约束布局中,我有一个方形的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%,这是我可以通过指南实现的,并且它的高度是相同的。

android layout height width
1个回答
1
投票

来自@pskink的评论是我一直在寻找的。线:

app:layout_constraintDimensionRatio="1:1"

诀窍。

© www.soinside.com 2019 - 2024. All rights reserved.