以编程方式设置扩展的 ImageView 宽度和高度 - android
我有一个自定义类,它扩展了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要告诉 ImageView 如何缩放。尝试使用
ImageView# setScaleType
。You probably need to tell the
ImageView
how to scale. Try usingImageView#setScaleType
.