我有一个imageview,其高度和宽度设置为fill_parent,而linearlayout设置了相同的值。因此,我想这应该将我的图像设置为适合屏幕大小。但它仅适合80%(横向模式下的顶部和底部边距)。

我尝试了以下代码,但未成功:

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

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

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

还有其他想法吗?

最佳答案

以语法方式更改:

imgview.setScaleType(ScaleType.FIT_XY);



从xml更改使用:
 android:scaleType="fitXY"

关于android - android:在imageview中拉伸(stretch)图像以适合屏幕,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4668001/

10-12 04:25