gpt4 book ai didi

android - 无限磁盘缓存在图像加载器 1.9.5 中不起作用

转载 作者:行者123 更新时间:2023-12-03 18:11:41 25 4
gpt4 key购买 nike

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

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 依赖:
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'

最佳答案

详情请见 https://github.com/nostra13/Android-Universal-Image-Loader/wiki/Configuration ,类名已更改为“UnlimitedDiskCache”,而不是您编写的“UnlimitedDiscCache”。

关于android - 无限磁盘缓存在图像加载器 1.9.5 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35645716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com