以编程方式设置扩展的 ImageView 宽度和高度 - android

发布于 2024-09-15 07:45:38 字数 464 浏览 6 评论 0原文

我有一个自定义类,它扩展了 ImageView,我以编程方式将其放置到relativelayout 上。我希望这些图像中的每一张都有特定的宽度和高度。我尝试使用 LayoutParams 和 setMaxWidth/setMaxHeight 在代码中设置宽度/高度...似乎都不起作用。

以下是该类构造函数中的代码:

LayoutParams p = new LayoutParams(50,67);       
        this.setLayoutParams(p);
        this.setImageResource(WhichImage(wi));
        this.setMaxWidth(50);
        this.setMaxHeight(67);

我已将对 setImageResource() 的调用移至所有内容的上方和下方,并且它仍然默认为我的可绘制对象中的真实图像大小...

I have a custom class that extends ImageView that I'm programatically putting on to a RelativeLayout. I want each one of these images to be a specific width and height. I've tried setting the width/height in code with LayoutParams and with setMaxWidth/setMaxHeight...neither seem to be working.

Here is the code from the constructor of the class:

LayoutParams p = new LayoutParams(50,67);       
        this.setLayoutParams(p);
        this.setImageResource(WhichImage(wi));
        this.setMaxWidth(50);
        this.setMaxHeight(67);

I've moved the call to setImageResource() above and below everything there and it still defaults to the true image size in my drawables...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唔猫 2024-09-22 07:45:38

您可能需要告诉 ImageView 如何缩放。尝试使用 ImageView# setScaleType

You probably need to tell the ImageView how to scale. Try using ImageView#setScaleType.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文