ImageView中的图像显示
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 XML 声明中使用属性
android:scaleType="fitXY"
或使用 ImageView 类的setScaleType(ImageView.ScaleType.FIT_XY)
方法Use attribute
android:scaleType="fitXY"
in your XML declaration or usesetScaleType(ImageView.ScaleType.FIT_XY)
method of ImageView class在适配器中使用此属性
use this property in adapter