以编程方式控制 ImageView 尺寸
在运行时设置 ImageView 的宽度和高度需要采用编程方法。为此,我们可以使用以下步骤:
设置高度:
// Fetch the LayoutParams, which holds the dimensions of the View LinearLayout.LayoutParams params = imageView.getLayoutParams(); // Set the height (in pixels) params.height = 20; // This step is crucial! After modifying the layout params, request a layout pass to refresh the view imageView.requestLayout();
重要提示:
如果您在绘制布局后修改 ImageView 的高度,则必须使用 requestLayout() 来确保更改已正确应用。
设置宽度:
按照与上面相同的步骤操作,但使用 LinearLayout.LayoutParams 对象的 width 属性。
params.width = 40;
以上是如何在运行时以编程方式控制 ImageView 大小?的详细内容。更多信息请关注PHP中文网其他相关文章!