ImageView 缩放类型

ImageView scaleType

这是我在应用程序 (1) 中的 ImageView

当我改变容器的大小时(例如LinearLayout),我的ImageView 改变图像大小但视图边界保持不变(2)。

如何设置 ImageView 大小和边框的缩放比例? (3)

我的 ImageView 代码在 xml:

 <ImageView
            android:id="@+id/image"
            android:layout_width="100dp"
            android:layout_height="wrap_content"
            android:src="@drawable/cover" />

P.S。这是我的应用程序中的问题 -

我从这里找到 - whosebug.com/a/10124018/3871859

我的ImageViewxml:

<ImageView
            android:id="@+id/image"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@drawable/cover" />

我只是添加了这一行:

android:adjustViewBounds="true"