Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I wanted to change height and width property of image view inside my activity I tried it in following way but its not working for me ...

View card_view = getLayoutInflater().inflate(R.layout.card_details1,null);
coupon_img = (ImageView) card_view.findViewById(R.id.coupon_image);
// I tried this ////////
coupon_img.getLayoutParams().height = 20;
coupon_img.getLayoutParams().width = 20;
// I also tried this ////
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(100, 100);
    coupon_img.setLayoutParams(layoutParams);
// also this one ////
coupon_img.setMaxHeight(10);

But I am not able to change height and width of imageview src. Is there any mistake I am doing? How to do this? Need help... Thank you...

share|improve this question
1  
use scale type to fit image src into imageView – Fahad Ishaque Feb 21 at 6:18

3 Answers

up vote 1 down vote accepted

In this piece of code, I am creating a new instance of an ImageView at runtime and setting dimensions to it:

// SET THE IMAGEVIEW DIMENSIONS
int dimens = 120;
float density = activity.getResources().getDisplayMetrics().density;
int finalDimens = (int)(dimens * density);

LinearLayout.LayoutParams imgvwDimens = 
        new LinearLayout.LayoutParams(finalDimens, finalDimens);
imgAlbumPhoto.setLayoutParams(imgvwDimens);

// SET SCALETYPE
imgAlbumPhoto.setScaleType(ScaleType.CENTER_CROP);

// SET THE MARGIN
int dimensMargin = 5;
float densityMargin = activity.getResources().getDisplayMetrics().density;
int finalDimensMargin = (int)(dimensMargin * densityMargin);

LinearLayout.LayoutParams imgvwMargin = 
        new LinearLayout.LayoutParams(finalDimens, finalDimens);
imgvwMargin.setMargins
(finalDimensMargin, finalDimensMargin, finalDimensMargin, finalDimensMargin);

This will set the dimensions of the ImageView. They will, however, be in px. Use the code from here if you need dp values: http://stackoverflow.com/a/9563438/450534

UPDATED:

To change the dimensions of an existing ImageView that has already been defined in the XML, use this:

coupon_img.setLayoutParams(new LayoutParams(100, 100));
share|improve this answer
Thank you Siddharth for you r help. Can you please tell how to change image height and width if I already defined it into xml file. – nilkash Feb 21 at 7:00
@nilkash: Check if the update works. – IceMAN Feb 21 at 7:08
Yeha I tried but its not working ... any other way ... – nilkash Feb 21 at 7:10
@nilkash: hmm.. let me get back to the office, test a few things and update. – IceMAN Feb 21 at 7:35
:) Yeah sure ... – nilkash Feb 21 at 7:42
show 3 more comments

try some thing like this...

 LayoutParams params = new LayoutParams(100, 100);
 parantlayout.addView(coupon_img, params);

I think this will help you.

share|improve this answer

I think you are not adding the changed image to the layout..

LinearLayout ll = (LinearLayout)findViewById(R.layout.yourlinearlayout);

image.setLayoutParams(
          new LinearLayout.LayoutParams(
                 bmp.getWidth(), 
                 bmp.getHeight())); 
ll.addView(image);// Then add the image to linear layout
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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