Android ImageView size not scaling with source image

What about changing your ImageViews to use android:layout_height="fill_parent"?

Edit – took me a while to find, but looking at the source helped me pinpoint adjustViewBounds. You might want to try adding android:adjustViewBounds="true" to your ImageViews. Surprisingly, this defaults to false.

Leave a Comment