我有一个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);
还有其他想法吗?
尽管这是一个稍有不同的问题,但是此答案应该会对您有所帮助。
—
弗雷德里(Fredley)2011年