listview从网络中加载大量图片容易内存泄露。使用下面三个步骤可以取得很好的效果
1异步加载
2控制从网络上加载的图片大小
3listview静止时才加载图片,滑动不加载图片
1异步加载图片可以防止从网络加载图片影响性能,异步加载图片也非常简单,使用AsyncTask就可。
2控制从网络上加载的图片大小,以下代码先获取图片的大小,然后计算图片的缩放比例,再加载图片。这样图片的加载的图片宽度高度为maxSize左右,防止了图片过大造成内存泄露。
public static Bitmap getWebBitmap(String imgUrl,int maxSize)
{
Bitmap bitmap=null;
try
{
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
URL url = new URL(imgUrl);
InputStream in=url.openStream();
BitmapFactory.decodeStream(in, null, o);
Log.v(TAG, "o width:"+o.outWidth+" height:"+o.outHeight);
in.close();
int scale=1;
if (o.outHeight > maxSize || o.outWidth > maxSize)