public static Picasso getPicasso(Context context) {
if (sPicasso == null) {
sPicasso = new Picasso.Builder(context)
//硬盘缓存池大小
.downloader(new OkHttpDownloader(context, ConfigConstants.MAX_CACHE_DISK_SIZE))
//内存缓存池大小
.memoryCache(new LruCache(ConfigConstants.MAX_CACHE_MEMORY_SIZE))
// .defaultBitmapConfig(Bitmap.Config.ARGB_4444)
.build();
}
return sPicasso;
}
PicassoConfigFactory.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:ImageLoadPK
作者:
评论列表
文章目录