Android异步加载图片
程序员文章站
2022-06-07 23:13:57
...
对于Android中的异步加载图片,自己总结了两种方式,如下:
1、
/** * 异步读取图片,需要传递三个参数:Imageview imageView,String imagePath,int maxNumpixels * @author Bryant */ public class AsyncLoadImage extends AsyncTask<Object, Object, Void> { @Override protected Void doInBackground(Object... params) { try { ImageView imageView=(ImageView) params[0]; String path=(String) params[1]; int maxNumOfPixels = (Integer)params[2]; Bitmap bm = CompressPicture.compress(path,maxNumOfPixels); publishProgress(new Object[] {imageView, bm}); }catch (Exception e) { e.printStackTrace(); } return null; } protected void onProgressUpdate(Object... progress) { ImageView imageView = (ImageView) progress[0]; Bitmap bm = (Bitmap) progress[1]; if(bm != null){ imageView.setImageBitmap(bm); } } }
2、
/** * 图片异步加载 * @author Bryant * */ public class AsyncImageLoader { private Map<String, SoftReference<Bitmap>> imageCache=new HashMap<String, SoftReference<Bitmap>>(); private int maxNumPixels; public Bitmap loadBitmap(final String imagePath,int maxNumPixels,final ImageCallback callback){ this.maxNumPixels = maxNumPixels; if(imageCache.containsKey(imagePath)){ SoftReference<Bitmap> softReference=imageCache.get(imagePath); if(softReference.get()!=null){ return softReference.get(); } } final Handler handler=new Handler(){ @Override public void handleMessage(Message msg) { callback.imageLoaded((Bitmap) msg.obj, imagePath); } }; new Thread(){ public void run() { Bitmap bitmap=loadImageFromPath(imagePath); imageCache.put(imagePath, new SoftReference<Bitmap>(bitmap)); handler.sendMessage(handler.obtainMessage(0,bitmap)); }; }.start(); return null; } protected Bitmap loadImageFromPath(String imagePath) { try { return CompressPicture.compress(imagePath, maxNumPixels); } catch (Exception e) { throw new RuntimeException(e); } } public interface ImageCallback{ public void imageLoaded(Bitmap imageBitmap,String imagePath); } }
经过实际使用,AsyncImageLoader的效率比较高,但是调用比较麻烦。
调用示例:
private AsyncImageLoader imageLoader = new AsyncImageLoader(); imageLoader.loadBitmap(imagePath,maxNumPixels, new ImageCallback() { public void imageLoaded(Bitmap imageBitmap, String imagePath) { imageView.setImageBitmap(imageBitmap); } });
AsyncLoadImage调用较简单,调用示例如下:
new AsyncLoadImage().execute(new Object[]{imageView,imagePath,maxNumPixels});
推荐阅读
-
jquery实现异步加载图片(懒加载图片一种方式)
-
arcgis for Android 100.2 加载shp
-
Jquery插件之多图片异步上传_jquery
-
jsp实现局部刷新页面、异步加载页面的方法
-
阿里云OSS利用iframe实现图片异步上传
-
javascript - 用户发帖应用开发中,用户异步上传了图片,但最终帖子没发布,那么上传的图不就没有用了吗怎么处理这种情况?
-
vue插件vue-lazyload懒加载插件的使用及在过程中遇到的图片不更新问题
-
Android 使用Picasso加载网络图片等比例缩放
-
Android常用的图片加载库
-
如何调试异步加载页面里包含的js文件_javascript技巧