ImageView中的图像显示

发布于 2024-12-21 15:38:37 字数 72 浏览 0 评论 0原文

我想在 gridview 的 imageview 中显示可绘制对象,问题是我无法使图像覆盖 imageView 的整个宽度和高度?

I want to display a drawable in an imageview for a gridview,problem is that i couldnot make the image cover the full width and height of the imageView?

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

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

发布评论

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

评论(2

暮年慕年 2024-12-28 15:38:37

在 XML 声明中使用属性 android:scaleType="fitXY" 或使用 ImageView 类的 setScaleType(ImageView.ScaleType.FIT_XY) 方法

Use attribute android:scaleType="fitXY" in your XML declaration or use setScaleType(ImageView.ScaleType.FIT_XY) method of ImageView class

私藏温柔 2024-12-28 15:38:37

在适配器中使用此属性

imageView.setLayoutParams(new GridView.LayoutParams(150, 150));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setPadding(1, 1, 1, 1);

use this property in adapter

imageView.setLayoutParams(new GridView.LayoutParams(150, 150));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setPadding(1, 1, 1, 1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文