这会让毕加索浪费记忆吗?

时间:2016-05-10 12:35:52

标签: android picasso

我正在做以下

int dimPx= (int)CommonFunc.convertDpToPixel(100, mCon);
imageView = new ImageView(mCon);
imageView.setLayoutParams(new LayoutParams(dimPx,dimPx));
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
Picasso.with(mCon).load(new File(filePathToImg).into(imageView);

记忆力不好吗?我唯一的疑问是我使用scaleType是FITXY而我正在使用Picasso来加载图像。它基本上是将整个图像加载到内存中还是Picasso足够智能,可以将其调整为imageview并存储大小的图像?

我试图删除FitXY并使用Picasso.fit()但我没有得到预期的结果。我希望将图像(从设备上的本地文件加载)调整大小以填充图像视图“忽略”宽高比

让我知道如果我这样做,并导致巨大的记忆丧失 感谢

0 个答案:

没有答案