目前我正在从网址加载图片,它正在逐渐消失,我无法理解为什么,有时需要超过60秒才能获得不那么大的图片。
我的代码:
获取图像异步任务:
public class GetImageAsyncTask extends AsyncTask<Void, Void, Bitmap> {
String url;
OnImageRetrieved listener;
ImageView imageView;
int height;
int width;
public GetImageAsyncTask(String url, ImageView imageView,OnImageRetrieved listener, int height, int width) {
this.url = url;
this.listener = listener;
this.imageView = imageView;
this.height = height;
this.width = width;
}
public interface OnImageRetrieved {
void onImageRetrieved(Bitmap image, ImageView imageview, String url);
}
protected Bitmap doInBackground(Void... params) {
Bitmap image = null;
try {
image = ImageUtilities.decodeSampledBitmapFromUrl(this.url, this.width, this.height);
} catch (Exception e) {
e.printStackTrace();
}
return image;
}
protected void onPostExecute(Bitmap result) {
this.listener.onImageRetrieved(result, this.imageView, this.url);
}
}
public static Bitmap decodeSampledBitmapFromUrl(String url, int reqWidth, int reqHeight) throws IOException {
final BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new java.net.URL(url).openStream(), null, options);
options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
options.inJustDecodeBounds = false;
return BitmapFactory.decodeStream(new java.net.URL(url).openStream(), null, options);
}
获取样本量:
public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth) {
final int halfHeight = height / 2;
final int halfWidth = width / 2;
while ((halfHeight / inSampleSize) > reqHeight
&& (halfWidth / inSampleSize) > reqWidth) {
inSampleSize *= 2;
}
}
return inSampleSize;
}
使用这些方法是因为如果没有可能会出现内存并发症,但它似乎需要的时间很长。是否有一些非常繁重的计算,我只是没有看到或?
答案 0 :(得分:1)
你可以使用Picasso或volly库来加载图片。我建议使用它,因为它是由google本身引入的。
答案 1 :(得分:0)
所以问题源于数组适配器以及getView()可以被调用100次的事实,可以接近100mb的数据被同时下载。
因此,作为针对这种情况的临时修复,我实现了一个全局LruCache单例,我在启动异步任务之前首先检查。
这显然不是理想的,但现在必须要做。我确定那里有更好的解决方案,如果有人提供,我很乐意听到它们。