我是否有可能ImageView
适合所有屏幕尺寸而不会拉伸图像?
我尝试了所有比例类型,将其更改为背景和 src fill_parent
>wrap_content
但仍然。如果图像不小它只是看起来拉伸..
例子:
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="centerInside"
android:adjustViewBounds="true"
android:background="@drawable/background" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitXY"
android:adjustViewBounds="true"
android:background="@drawable/background" />
这 2 个适合宽度,但图像被拉伸.. 但是当我将其更改为 src 时,图像只是居中且很小。