首页  >  文章  >  Java  >  如何在运行时以编程方式控制 ImageView 大小?

如何在运行时以编程方式控制 ImageView 大小?

Patricia Arquette
Patricia Arquette原创
2024-11-23 00:45:22331浏览

How to Programmatically Control ImageView Size at Runtime?

以编程方式控制 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn