下载地址:
https://github.com/nostra13/Android-Universal-Image-Loader
使用步骤:
1. jar包universal-image-loader-1.8.5-with-sources.jar并导入工程
2. 配置清单文件
配置Manifest文件,添加网络请求和访问外部存储的权限,因为要进行网络请求和本地缓存
<uses-permission android:name="android.permission.INTERNET" /> <!-- Include next permission if you want to allow UIL to cache images on SD card --> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
3. MyApplication类,并初始化ImageLoader
时间: 2024-10-15 10:51:02