I have a few ImageViews inside a LinearLayout. I need to scale down the ImageViews so that they maintain their aspect ratios whilst fitting inside the LinearLayout vertical
I had similar problem and my solution was to set android:scaleType="fitEnd" attribute of ImageView in XML layout file.
android:scaleType="fitEnd"