如果需要使用Glide框架替换现在的Universal-Image-Loader框架,直接修改ImageLoaderUtils工具类,这样亦可实现不需修改所有使用到框架Universal-Image-Loader的地方。
public class ImageLoaderUtils {
//默认加载
public static void loadImageView(Context context, String imgUrl, ImageView view) {
Glide.w
《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》
【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享
ith(context).load(imgUrl).into(view);
}
}
这样处理固然可以替换框架,并且工作量不算大,但我认为这种处理方式有一定的弊端,剔除了旧框架代码,万一日后新框架出现问题,处理工作就显得麻烦,说白了就是这种处理方式不能并存两种或两种以上的框架方案,如果项目中需要切换框架的话就明显感觉到不灵活,所以我认为引入策略模式是可取的。
开启封装之路关于策略模式,这里我就不详细描述,日后抽空写一篇关于“策略模式”的文章。
首先,我们定义一个策略接口,用于存放框架之间会共同使用的方法,例如:默认加载图片,加载GIf等等。
public interface baseImageLoaderStrategy {
void loadImage(Context context, ImageView view, Object imgUrl);
}
第二步:接下来写实现类,这里我使用Universal-Image-Loader为例,简单写一个实现类。
public class UniversalLoaderStrategy implements baseImageLoaderStrategy {
private DisplayImageOptions mImageOptions;
private void initOptions() {
ImageLoaderConfiguration configuration = ImageLoaderConfiguration.createDefault(this);
ImageLoader.getInstance().init(configuration);
mImageOptions = DisplayImageOptions.createSimple();
}
@Override
public void loadImage(Context context, ImageView view, Object imgUrl) {
ImageLoader.getInstance().displayImage(imgUrl, view, mImageOptions);
}
}
完成实现类后,最后写一个调用的工具类就完成了封装。
public class ImageLoaderUtils {
private baseImageLoaderStrategy mImageLoaderStrategy;
private ImageLoaderUtils() {
//默认使用Universal-Image-Loader
mImageLoaderStrategy = new UniversalLoaderStrategy(); }
public static void setImageLoaderStrategy(baseImageLoaderStrategy strategy) {
if (strategy != null) {
mImageLoaderStrategy = strategy;
}
}
public static void loadImage( Context context, ImageView view, Object imgUrl) {
mImageLoaderStrategy.loadImage(context,view,imgUrl);
}
}
到此为止,就已经完成了初步的封装,使用方式:
ImageLoaderUtils.loadImage(context, imageView, imgUrl);
完成了初步封装,但如何解决框架替换的问题好像还没提及到。兄弟不要急呀,车现在马上要开,扶稳了。假如项目现在要使用Glide框架,那我们需要先写一个简单Glide的实现类。如下:
public class GlideLoaderStrategy implements baseImageLoaderStrategy {
private RequestOptions mOptions;
private ImageLoaderConfig mConfig;
private RequestOptions getOptions() {
if (mOptions == null) {
mOptions = new RequestOptions();
mOptions.error(mConfig.getErrorPicRes())
.placeholder(mConfig.getPlacePicRes())
//下载的优先级
.priority(Priority.NORMAL)
//缓存策略
.diskCacheStrategy(DiskCacheStrategy.ALL);
}
return mOptions;
}
@Override
public void loadImage(Context context, ImageView view, Object imgUrl) {
with(context)
.load(imgUrl)
.apply(getOptions())
//先加载缩略图 然后在加载全图
.thumbnail(Contants.THUMB_SIZE)
.into(view);
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)