ImageLoader must be init with configuration before using 错误解决方法

来源:互联网 发布:sony签约网络经销商 编辑:程序博客网 时间:2024/05/27 01:12

最近开发过程中用到了开源项目Android-Universal-Image-Loader

在程序开发之前在CSDN的文章里看到的有Android-Universal-Image-Loader这么个好东西 ,用起来非常的方便,大家可以看Demo,里面有详细的介绍。

Android-Universal-Image-Loader 在使用的过程中碰到了一些问题。当时完全是按照官方的Demo来搭建的,但是始终程序运行不起来,会报以下错误:

java.lang.RuntimeException: ImageLoader must be init with configuration before using

字面意思是在使用前要初始化

只要加一句话:

imageLoader.init(ImageLoaderConfiguration.createDefault(MainActivity.this));

ps: 经小伙伴们提醒,官方demo中的初始化方法是在application类中调用的