您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關Android中怎么隔離第三方庫,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
首先抽象一個ImageLoader接口
** * 圖片加載器功能接口; * 添加或者替換新的圖片加載器實現該接口即可 */public interface ImageLoader { /** * Init ImageLoader */ void init(Context context); /** * Show Image * * @param imageUrl * @param imageView * @param defaultImage */ void displayImage(String imageUrl, ImageView imageView, int defaultImage); }
我們當前是使用UniversalImageLoader來展示項目中的圖片我們就建一個UniversalImageLoader類來實現上面的接口
public class UniversalImageLoader implements ImageLoader { private final long discCacheLimitTime = 3600 * 24 * 15L; private com.nostra13.universalimageloader.core.ImageLoader imageLoader = com.nostra13.universalimageloader.core.ImageLoader.getInstance(); @Override public void init(Context context) { if (!imageLoader.isInited()) { ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder( context) .threadPriority(Thread.NORM_PRIORITY) .denyCacheImageMultipleSizesInMemory() .memoryCache(new WeakMemoryCache()) .memoryCacheSize((2 * 1024 * 1024)) .memoryCacheSizePercentage(13) .discCacheFileNameGenerator(new Md5FileNameGenerator()) .discCache( new LimitedAgeDiskCache(StorageUtils .getCacheDirectory(context), discCacheLimitTime)) .tasksProcessingOrder(QueueProcessingType.LIFO).build(); com.nostra13.universalimageloader.core.ImageLoader.getInstance().init(config); } } @Override public void displayImage(String uri, ImageView img, int default_pic) { DisplayImageOptions options = new DisplayImageOptions.Builder() .showImageOnLoading(default_pic) .showImageForEmptyUri(default_pic).showImageOnFail(default_pic) .cacheInMemory(true).cacheOnDisc(true) .bitmapConfig(Bitmap.Config.RGB_565) .displayer(new SimpleBitmapDisplayer()).build(); imageLoader.displayImage(uri, img, options); }
接下來我們寫一個代理類來幫我們實現圖片加載的任務
/** * 圖片加載代理類,所有的圖片操作都通過該代理類去實現; * 如果要改變圖片加載框架,只需要在該類里替換相應的圖片加載框架即可,客戶端所有引用的圖片操作都不需要修改 */public class ImageLoaderProxy implements ImageLoader { private ImageLoader imageLoader;//代理對象 private static ImageLoaderProxy imageLoaderProxy; public static ImageLoaderProxy getInstance() { if (imageLoaderProxy == null) { imageLoaderProxy = new ImageLoaderProxy(); } return imageLoaderProxy; } public ImageLoaderProxy() { imageLoader= new UniversalImageLoader(); } @Override public void init(Context context) { imageLoader.init(context); } @Override public void displayImage(String imageUrl, ImageView imageView, int defaultImage) { imageLoader.displayImage(imageUrl, imageView, defaultImage); } }
這樣客戶端所有需要顯示圖片的地方只需要調用代理類的圖片顯示方法即可 ImageLoaderProxy.getInstance().displayImage();
當老板讓我們換成Picasso來完成圖片加載時 ,我們只需增加一個 PicassoImageLoader類然后將代理類中的這行代碼 imageLoaderProxy = new UniversalImageLoader();換成imageLoaderProxy = new PicassoImageLoader()即可。
以上就是Android中怎么隔離第三方庫,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。