ImageLoaderFramework icon indicating copy to clipboard operation
ImageLoaderFramework copied to clipboard

打造统一的图片加载框架,融合Glide(4.x),Fresco,不侵入业务代码,一套API兼容两种加载库

Results 8 ImageLoaderFramework issues
Sort by recently updated
recently updated
newest added

我试了一下,貌似不能加载gif动图。 ``` ImageView imageView = findViewById(R.id.imageView); ImageLoader.createImageOptions(imageView, url) .placeholder(R.mipmap.ic_launcher).build().show(); ``` ``` // 初始化代码需要在Application中完成。 ImageLoaderConfig config = new ImageLoaderConfig.Builder(LoaderEnum.FRESCO, new FrescoImageLoader()) .maxMemory(40 * 1024 * 1024L) // 配置内存缓存,单位为Byte .build(); ImageLoaderManager.getInstance().init(this, config);...

[add]support more glide loadType

请问是否可以加载assets文件下本地的图片呢?该用什么方法如何加载呢?

Translated README.md to English

如果是glide我想要使用transform怎么使用? 如果用的是其它库是否也有同样问题?