I have an imageview that has its height and width set to "fill_parent" with a linearlayout that has the same values set. So i suppose this should set my images to fit the screen. But it only fits like 80% (margin top and bottom in landscape mode).

So ive tried the following code, without success:

Display display = getWindowManager().getDefaultDisplay(); 
    int width = display.getWidth();
    int height = display.getHeight();

    imgView.setMinimumWidth(width);
    imgView.setMinimumHeight(height);

    imgView.setMaxWidth(width);
    imgView.setMaxHeight(height);

Any other ideas?

link|improve this question

25% accept rate
feedback

3 Answers

up vote 27 down vote accepted

use imgview.setScaleType(ScaleType.FIT_XY);

link|improve this answer
1  
Thanks, works perfectly – Johan Jan 12 '11 at 12:04
2  
I know this is what you wanted, but for images where you care about aspect ratio, this will stretch it out. – Artem Russakovskii Nov 15 '11 at 1:39
feedback

Give in the xml file of your layout android:scaleType="fitXY"
P.S : this applies to when the image is set with android:src="..." rather than android:background="..." as backgrounds are set by default to stretch and fit to the View.

link|improve this answer
2  
+1 for android:background. Thank you. – Pankaj Kumar Jul 11 '11 at 6:31
feedback

Although it's a slightly different problem, this answer should help you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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