最近写了个微博客户端用到了Android-Universal-Image-Loader。
在程序开发之前还不知道有Android-Universal-Image-Loader这么个好东西 ,其实都一样用起来非常的方便,大家可以看Demo,里面有详细的介绍。
Android-Universal-Image-Loader 在使用的过程中碰到了一些问题。当时完全是按照官方的Demo来搭建的,但是始终程序运行不起来,会报以下错误:
java.lang.RuntimeException: ImageLoader must be init with configuration before using
找了很久也没有找到问题的解决方法,最后在Stackoverflow找到了最终的解决方案,只要加一句话:
imageLoader.init(ImageLoaderConfiguration.createDefault(SpecialAlbumActivity.this));
原来是没有初始化,奇怪!为什么官方的Demo怎么能运行啊? Mark 一下