我正在尝试以全屏视图显示图像并使用以下代码:
// Target to write the image to local storage.
Target target = new Target() {
// Target implementation.
}
// (1) Download and save the image locally.
Picasso.with(context)
.load(url)
.into(target);
// (2) Use the cached version of the image and load the ImageView.
Picasso.with(context)
.load(url)
.into(imgDisplay);
此代码适用于较新的手机,但在具有32MB VM的手机上,我遇到了内存问题。所以我尝试将(2)更改为:
Picasso.with(context)
.load(url)
.fit()
.into(imgDisplay);
这导致图像失真。由于在下载之前我不知道图像的尺寸,因此我无法设置ImageView尺寸,因此在不考虑纵横比的情况下调整图像尺寸:
<ImageView
android:id="@+id/imgDisplay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
处理这种情况的最佳方法是什么?我的原始图像最大宽度为768,高度为1024,我想在屏幕比这个小得多时进行下采样。如果我尝试使用resize()
,我的代码会变得复杂,因为我必须等待(1)完成下载,然后在(2)中添加resize()
。
我假设转换在这种情况下没有帮助,因为public Bitmap transform(Bitmap source)
的输入已经有了大位图,这将导致我的内存不足。