gpt4 book ai didi

android - 如何制作 android imageview 方形?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:28 26 4
gpt4 key购买 nike

我在 Android 项目中使用 ImageView

宽度:match_parent高度:wrap_content

然后我将它缩放到 fill_XY,但图像还不是正方形...我该怎么办?

enter image description here

最佳答案

方形图像的最佳方法是使用 ConstraintLayoutconstraintDimensionRatio 没有给出固定的高度/宽度。

  <android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/image"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="H,1:1"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

关于android - 如何制作 android imageview 方形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21437224/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com