I have an image that is 480 pixels by 40 pixels. I would like to show this image in an ImageView without having it scale to fit.
Ex: If my screen is only 320pixels wide I would like only 320pixels of the image to show on the screen, not have it cram itself into the ImageView (even if it means that the rest of the image gets cut off).
Is there a way to prevent it from scaling to fit?
EDIT: Also, I would like the left side of the image to line up with the left side of the device's screen.
Thanks
Use ScaleType.CENTER
, like this in XML:
android:scaleType="center"
This will "center the image in the view, but perform no scaling"
Read more here: http://developer.android.com/reference/android/widget/ImageView.ScaleType.html
(This is by the way the first hit on googling "imageview scale")
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With