I use Layout_width="fill_parent" and Layout_height="wrap content". If an image is bigger than the ImageView, it will be downscaled perfectly.

However, I never got it working to upscale smaller images. I tried any combination of ScaleType and "AdjustViewBounds": it always stays in its own size in the middle of the image view. Here is the code...

 <LinearLayout
        android:id="@+id/LinearLayout02"
        android:layout_height="wrap_content"
        android:background="@drawable/content_bg"
        android:orientation="vertical"
        android:padding="5dp"
        android:layout_width="fill_parent"
        android:layout_marginLeft="1px">
        <ImageView
          android:layout_height="wrap_content"
          android:src="@drawable/test"
          android:id="@+id/ImageViewTest"
          android:layout_width="fill_parent"
          android:adjustViewBounds="true"
          android:scaleType="center"></ImageView>
</LinearLayout>
link|improve this question

69% accept rate
Try using CENTER_INSIDE or FIT_XY. – bhups Sep 24 '10 at 9:02
I tried all of them. None of them worked for me. – OneWorld Sep 24 '10 at 9:12
4  
I found the only way to get it working, was setting layout_hight and layout_width to fixed values like 150dp x 200dp – OneWorld Nov 5 '10 at 21:39
feedback

3 Answers

<LinearLayout
    android:layout_height="wrap_content"

uses the original size of the image inside.

Try something bigger or fill_parent

link|improve this answer
This is just one of my golden answers, you have no idea of how much trouble I've had with imageview and its faulty (or misunderstood) scaletype. Thamls a ton. – Warpzit Dec 4 '11 at 21:06
feedback

Use android:scaleType="FIT_START" or android:scaleType="FIT_END", to Compute a scale that will maintain the original src aspect ratio, but will also ensure that src fits entirely inside dst (from GoogleDev).

More info:

http://developer.android.com/reference/android/widget/ImageView.ScaleType.html

link|improve this answer
feedback

Adding android:scaleType="fitXY" to ur ImageView should stretch the image if the size is small.

link|improve this answer
well that doesn't keep the aspect ratio... – OneWorld Nov 5 '10 at 21:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.