无限磁盘缓存在图像加载程序1.9.5中不起作用

时间:2016-02-26 07:16:31

标签: android android-studio universal-image-loader

无限制磁盘缓存在universal-image-loader中不起作用:1.9.5 我想把图像存储在SD卡中。 请分享此代码的替换。 这是我的代码:

public void initImageLoader() {

    try {
        File cacheDir = StorageUtils.getOwnCacheDirectory(getApplicationContext(), getString(R.string.app_name));
        DisplayImageOptions options = new DisplayImageOptions.Builder().showImageForEmptyUri(R.mipmap.ic_launcher)
                .showImageOnLoading(R.mipmap.ic_launcher).showImageOnFail(R.mipmap.ic_launcher).cacheInMemory(true).cacheOnDisk(true)
                .bitmapConfig(Bitmap.Config.RGB_565).considerExifParams(true).build();

        @SuppressWarnings("deprecation")
        ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(getApplicationContext())
                .discCache(new UnlimitedDiscCache(cacheDir)).defaultDisplayImageOptions(options).build();
        ImageLoader.getInstance().init(config);
        L.writeLogs(false);
    } catch (Exception e) {
        e.printStackTrace();
    }

}

Gradle Dependencies:

compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'

1 个答案:

答案 0 :(得分:0)

请在https://github.com/nostra13/Android-Universal-Image-Loader/wiki/Configuration查看详细信息,班级名称已更改为" UnlimitedDiskCache"但不是" UnlimitedDiscCache"正如你编码的那样。