Update : I solved this issue by using the method described in this answer

I'm a bit stuck with this issue, which I think should be pretty simple.

So my app downloads an image, and renders the bitmap in an ImageView, a child element of a RelativeLayout. I would like the ImageView to fit the parent width, and to adapt it's size to keep the aspect ratio.

Here is my XML :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<RelativeLayout android:id="@+id/banner" android:layout_width="fill_parent" android:layout_height="wrap_content"></RelativeLayout>
<TextView  
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="@string/hello"
/>
</LinearLayout>

And the code :

public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


    RelativeLayout banner = (RelativeLayout) findViewById(R.id.banner);
    ImageView imgV = new ImageView(this);

    imgV.setScaleType(ImageView.ScaleType.CENTER_CROP);
    // I tried all the scale types : CENTER_INSIDE : same effect, FIT_CENTER : same effect... 

    imgV.setBackgroundColor(0x00FFFF00);

    imgV.setAdjustViewBounds(Color.BLUE);


    RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.FILL_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT);

    banner.addView(imgV,params);

    // Some code downloading the image stream

    bitmap = BitmapFactory.decodeStream(stream);


    imgV.setImageBitmap(bitmap);

    }

Desired :

Desired result

Result :

Current result

link|improve this question

feedback

3 Answers

You're probably looking for android:adjustViewBounds="true" in xml or imageView.setAdjustViewBounds(true) in Java.

link|improve this answer
That is in my code : imgV.setAdjustViewBounds(true); setAdjustViewBounds is only for ImageView, and I'd like a property like this for the RelativeLayout – Julien Apr 6 '11 at 9:39
Could you post your full xml layout? Small differences can make a large impact. – Matthew Willis Apr 6 '11 at 14:32
It is the full xml layout – Julien Apr 6 '11 at 14:53
Fixed (see update) – Julien Apr 6 '11 at 14:55
@Julien Have you found a solution? I have exactly the same problem. Can you post the solution? – Erik May 15 '11 at 13:08
show 2 more comments
feedback
up vote 3 down vote accepted

As I mentioned in a comment, I subclassed the ImageView. I found my code, here you go :

    protected class ResizableImageView extends ImageView
    {

        private Bitmap mBitmap;

        // Constructor

        public ResizableImageView(Context context)
        {
            super(context);
        }


        // Overriden methods


          @Override 
          protected void onMeasure(int widthMeasureSpec,
                  int heightMeasureSpec) {
              if(mBitmap != null)
              {
                    int width = MeasureSpec.getSize(widthMeasureSpec);
                    int height = width * mBitmap.getHeight() / mBitmap.getWidth();
                    setMeasuredDimension(width, height);

              } 
              else
              {
                  super.onMeasure(widthMeasureSpec,
                          heightMeasureSpec);
              }
              }

            @Override
            public void setImageBitmap(Bitmap bitmap)
            {
                mBitmap = bitmap;
                 super.setImageBitmap(bitmap);
            }

    }
link|improve this answer
An improvement I made is not using a bitmap for getting height and width in onMeasure but using getDrawable().getIntrinsicHeight() and getDrawable().getIntrinsicWidth() (of course with null-checking the drawable). – js- Feb 16 at 14:18
feedback

I think you should change your imgV width to "match_parent"

You should change the scale type to imgV.setScaleType(ImageView.ScaleType.CENTER_INSIDE);

link|improve this answer
thanks i'll test this tomorrow :) – Julien Apr 5 '11 at 19:28
Unfortunately, it doesn't change, center_inside has the same effect. And match_parent and fill_parent have the same value (-1) as said in developer.android.com/reference/android/view/… – Julien Apr 6 '11 at 9:41
Ah, sorry, scratch that, i'm an idiot. At which point are you assigning layout parameters to your imageview? – LBNerdBard Apr 6 '11 at 10:03
When adding the view to the "banner" : RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.FILL_PARENT, RelativeLayout.LayoutParams.WRAP_CONTENT); banner.addView(imgV,params); – Julien Apr 6 '11 at 10:06
1  
Nice idea, but it didn't work. The image view setAdjustViewBounds is apparently not working for the height – Julien Apr 6 '11 at 10:35
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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