请原谅我,我的英语说得不好。
我使用Android的Piccaso库获取图像,并在baseadapter的imageview中显示该图像,但是它们是高容量图像。
快速调整图像大小的最佳方法是什么?
答案 0 :(得分:2)
尝试关注
Picasso
.with(context)
.load(url)
.resize(600, 200) // resizes the image to these dimensions (in pixel). does not respect aspect ratio
.into(imageViewResize);