本篇文章給大家分享的是有關(guān)Android中怎么隔離第三方庫,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供金湖網(wǎng)站建設(shè)、金湖做網(wǎng)站、金湖網(wǎng)站設(shè)計、金湖網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、金湖企業(yè)網(wǎng)站模板建站服務(wù),10年金湖做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
首先抽象一個ImageLoader接口
** * 圖片加載器功能接口; * 添加或者替換新的圖片加載器實現(xiàn)該接口即可 */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); }
我們當(dāng)前是使用UniversalImageLoader來展示項目中的圖片我們就建一個UniversalImageLoader類來實現(xiàn)上面的接口
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); }
接下來我們寫一個代理類來幫我們實現(xiàn)圖片加載的任務(wù)
/** * 圖片加載代理類,所有的圖片操作都通過該代理類去實現(xiàn); * 如果要改變圖片加載框架,只需要在該類里替換相應(yīng)的圖片加載框架即可,客戶端所有引用的圖片操作都不需要修改 */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); } }
這樣客戶端所有需要顯示圖片的地方只需要調(diào)用代理類的圖片顯示方法即可 ImageLoaderProxy.getInstance().displayImage();
當(dāng)老板讓我們換成Picasso來完成圖片加載時 ,我們只需增加一個 PicassoImageLoader類然后將代理類中的這行代碼 imageLoaderProxy = new UniversalImageLoader();換成imageLoaderProxy = new PicassoImageLoader()即可。
以上就是Android中怎么隔離第三方庫,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。