is it possible that my ImageView will fit to all screen sizes without the image look stretched?
i tried all scale types changing it to background and src with fill_parent > wrap_content
but still. if the image is not smaller it just looks stretched..
example:
<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" />
these 2 fits the width but the image is stretched.. but when i change it to src the image is just centered and small.
There is no built-in scale type that allows the
ImageViewto automatically upscale the image and keep its aspect ratio intact. The only scale type that does upscaling isfitXY, which won’t respect the aspect ratio, as you found out yourself too.That being said, this topic has already been visited more than once. Have a look at some of the proposed suggestions for similar questions:
I’m sure’ll be heaps more, so it might worth using the search box at the top.