/** * 加载图片工具类 * @author afu * */ public class BitmapUtils implements TaskHandler { /** * 判断任务是否暂停 */ private boolean pauseTask = false; /** * 是否取消所有任务 */ private boolean cancelAllTask = false; private final Object pauseTaskLock = new Object(); /** * Android上下文 */ private Context context; private BitmapGlobalConfig globalConfig; private BitmapDisplayConfig defaultDisplayConfig; /////////////////////////////////////////////// create /////////////////////////////////////////////////// /** * * @param context 上下文 */ public BitmapUtils(Context context) { this(context, null); } /** * * @param context 上下文 * @param diskCachePath 磁盘高速缓存路径 */ public BitmapUtils(Context context, String diskCachePath) { if (context == null) { throw new IllegalArgumentException("context may not be null"); } this.context = context.getApplicationContext(); globalConfig = BitmapGlobalConfig.getInstance(this.context, diskCachePath); defaultDisplayConfig = new BitmapDisplayConfig(); } /** * * @param context 上下文 * @param diskCachePath 磁盘高速缓存路径 * @param memoryCacheSize 内存缓存空间大小 */ public BitmapUtils(Context context, String diskCachePath, int memoryCacheSize) { this(context, diskCachePath); globalConfig.setMemoryCacheSize(memoryCacheSize); } /** * * @param context 上下文 * @param diskCachePath 磁盘高速缓存路径 * @param memoryCacheSize 内存缓存空间大小 * @param diskCacheSize 磁盘高速缓存空间大小 */ public BitmapUtils(Context context, String diskCachePath, int memoryCacheSize, int diskCacheSize) { this(context, diskCachePath); globalConfig.setMemoryCacheSize(memoryCacheSize); globalConfig.setDiskCacheSize(diskCacheSize); } /** * * @param context 上下文 * @param diskCachePath 磁盘高速缓存路径 * @param memoryCachePercent 内存缓存百分比 */ public BitmapUtils(Context context, String diskCachePath, float memoryCachePercent) { this(context, diskCachePath); globalConfig.setMemCacheSizePercent(memoryCachePercent); } /** * * @param context 上下文 * @param diskCachePath 磁盘高速缓存路径 * @param memoryCachePercent 内存缓存百分比 * @param diskCacheSize 磁盘缓存空间大小 */ public BitmapUtils(Context context, String diskCachePath, float memoryCachePercent, int diskCacheSize) { this(context, diskCachePath); globalConfig.setMemCacheSizePercent(memoryCachePercent); globalConfig.setDiskCacheSize(diskCacheSize); } //////////////////////////////////////// config 配置//////////////////////////////////////////////////////////////////// /** * 配置默认加载drawable类型资源图片 * @param drawable * @return */ public BitmapUtils configDefaultLoadingImage(Drawable drawable) { defaultDisplayConfig.setLoadingDrawable(drawable); return this; } /** * 配置默认加载资源id类型资源图片 * @param resId * @return */ public BitmapUtils configDefaultLoadingImage(int resId) { defaultDisplayConfig.setLoadingDrawable(context.getResources().getDrawable(resId)); return this; } /** * 配置默认加载图片 * @param bitmap bitmap类中的资源图片 * @return */ public BitmapUtils configDefaultLoadingImage(Bitmap bitmap) { defaultDisplayConfig.setLoadingDrawable(new BitmapDrawable(context.getResources(), bitmap)); return this; } /** * 设置默认加载失败的图片 * @param drawable drawable类型的资源图片 * @return */ public BitmapUtils configDefaultLoadFailedImage(Drawable drawable) { defaultDisplayConfig.setLoadFailedDrawable(drawable); return this; } /** * 配置默认加载失败图片,加载id类型资源图片 * @param resId * @return */ public BitmapUtils configDefaultLoadFailedImage(int resId) { defaultDisplayConfig.setLoadFailedDrawable(context.getResources().getDrawable(resId)); return this; } /** * 配置默认加载失败图片,加载Bitmap类型资源图片 * @param bitmap * @return */ public BitmapUtils configDefaultLoadFailedImage(Bitmap bitmap) { defaultDisplayConfig.setLoadFailedDrawable(new BitmapDrawable(context.getResources(), bitmap)); return this; } /** * 配置默认图片最大宽和高 * @param maxWidth 最大宽 * @param maxHeight 最大高 * @return */ public BitmapUtils configDefaultBitmapMaxSize(int maxWidth, int maxHeight) { defaultDisplayConfig.setBitmapMaxSize(new BitmapSize(maxWidth, maxHeight)); return this; } /** * 配置默认位图最大图片参数 * @param maxSize 最大图片参数类 * @return */ public BitmapUtils configDefaultBitmapMaxSize(BitmapSize maxSize) { defaultDisplayConfig.setBitmapMaxSize(maxSize); return this; } /** * 配置默认图片加载动画 * @param animation 动画 * @return */ public BitmapUtils configDefaultImageLoadAnimation(Animation animation) { defaultDisplayConfig.setAnimation(animation); return this; } /** * 配置默认自动旋转动画 * @param autoRotation * @return */ public BitmapUtils configDefaultAutoRotation(boolean autoRotation) { defaultDisplayConfig.setAutoRotation(autoRotation); return this; } /** * 配置默认是否显示原始图片 * @param showOriginal true:显示原始图片,false:将会对图片压缩处理 * @return */ public BitmapUtils configDefaultShowOriginal(boolean showOriginal) { defaultDisplayConfig.setShowOriginal(showOriginal); return this; } /** * 配置默认图片配置,传入Bitmap.Config类型 * @param config * @return */ public BitmapUtils configDefaultBitmapConfig(Bitmap.Config config) { defaultDisplayConfig.setBitmapConfig(config); return this; } /** * 配置默认显示配置 * @param displayConfig * @return */ public BitmapUtils configDefaultDisplayConfig(BitmapDisplayConfig displayConfig) { defaultDisplayConfig = displayConfig; return this; } /** * 配置下载参数 * @param downloader * @return */ public BitmapUtils configDownloader(Downloader downloader) { globalConfig.setDownloader(downloader); return this; } /** * 配置默认缓存失效 * @param defaultExpiry * @return */ public BitmapUtils configDefaultCacheExpiry(long defaultExpiry) { globalConfig.setDefaultCacheExpiry(defaultExpiry); return this; } /** * 配置默认链接时间超时时间 * @param connectTimeout 毫秒单位 * @return */ public BitmapUtils configDefaultConnectTimeout(int connectTimeout) { globalConfig.setDefaultConnectTimeout(connectTimeout); return this; } /** * 配置默认读取超时时间 * @param readTimeout 毫秒 * @return */ public BitmapUtils configDefaultReadTimeout(int readTimeout) { globalConfig.setDefaultReadTimeout(readTimeout); return this; } /** * 配置线程池多少 * @param threadPoolSize 线程池数 * 此参数没有设置,默认是设置5个核心线程池 * @return */ public BitmapUtils configThreadPoolSize(int threadPoolSize) { globalConfig.setThreadPoolSize(threadPoolSize); return this; } /** * 配置内存缓存是否启用,默认是启用的 * @param enabled * @return */ public BitmapUtils configMemoryCacheEnabled(boolean enabled) { globalConfig.setMemoryCacheEnabled(enabled); return this; } /** * 配置磁盘缓存功能,默认是启用的 * @param enabled * @return */ public BitmapUtils configDiskCacheEnabled(boolean enabled) { globalConfig.setDiskCacheEnabled(enabled); return this; } /** * 配置原始磁盘缓存文件名称 * @param fileNameGenerator * @return */ public BitmapUtils configDiskCacheFileNameGenerator(FileNameGenerator fileNameGenerator) { globalConfig.setFileNameGenerator(fileNameGenerator); return this; } /** * 配置位图缓存监听 * @param listener * @return */ public BitmapUtils configBitmapCacheListener(BitmapCacheListener listener) { globalConfig.setBitmapCacheListener(listener); return this; } ////////////////////////// display 显示//////////////////////////////////// /** * 根据图片路径,显示到具体的View上 * @param container 要把图片显示到的View * @param uri 图片路径 */ public <T extends View> void display(T container, String uri) { display(container, uri, null, null); } /** * 根据图片路径,显示到具体的View上 * @param container 要把图片显示到的View * @param uri 图片路径 * @param displayConfig */ public <T extends View> void display(T container, String uri, BitmapDisplayConfig displayConfig) { display(container, uri, displayConfig, null); } /** * 根据图片路径,显示到具体的View上 * @param container 要把图片显示到的View * @param uri 图片路径 * @param callBack 加载过程回调各种状态 */ public <T extends View> void display(T container, String uri, BitmapLoadCallBack<T> callBack) { display(container, uri, null, callBack); } /** * 根据图片路径,显示到具体的View上 * @param container 要把图片显示到的View * @param uri 图片路径 * @param displayConfig 位图显示配置 * @param callBack */ public <T extends View> void display(T container, String uri, BitmapDisplayConfig displayConfig, BitmapLoadCallBack<T> callBack) { if (container == null) { return; } if (callBack == null) { callBack = new DefaultBitmapLoadCallBack<T>(); } if (displayConfig == null || displayConfig == defaultDisplayConfig) { displayConfig = defaultDisplayConfig.cloneNew(); } // Optimize Max Size BitmapSize size = displayConfig.getBitmapMaxSize(); displayConfig.setBitmapMaxSize(BitmapCommonUtils.optimizeMaxSizeByView(container, size.getWidth(), size.getHeight())); container.clearAnimation(); if (TextUtils.isEmpty(uri)) { callBack.onLoadFailed(container, uri, displayConfig.getLoadFailedDrawable()); return; } // start loading callBack.onPreLoad(container, uri, displayConfig); // find bitmap from mem cache. Bitmap bitmap = globalConfig.getBitmapCache().getBitmapFromMemCache(uri, displayConfig); if (bitmap != null) { callBack.onLoadStarted(container, uri, displayConfig); callBack.onLoadCompleted( container, uri, bitmap, displayConfig, BitmapLoadFrom.MEMORY_CACHE); } else if (!bitmapLoadTaskExist(container, uri, callBack)) { final BitmapLoadTask<T> loadTask = new BitmapLoadTask<T>(container, uri, displayConfig, callBack); // get executor PriorityExecutor executor = globalConfig.getBitmapLoadExecutor(); File diskCacheFile = this.getBitmapFileFromDiskCache(uri); boolean diskCacheExist = diskCacheFile != null && diskCacheFile.exists(); if (diskCacheExist && executor.isBusy()) { executor = globalConfig.getDiskCacheExecutor(); } // set loading image Drawable loadingDrawable = displayConfig.getLoadingDrawable(); callBack.setDrawable(container, new AsyncDrawable<T>(loadingDrawable, loadTask)); loadTask.setPriority(displayConfig.getPriority()); loadTask.executeOnExecutor(executor); } } /////////////////////////////////////////////// cache 缓存相关///////////////////////////////////////////////////////////////// /** * 清除内存和磁盘缓存 */ public void clearCache() { globalConfig.clearCache(); } /** * 清除内存缓存 */ public void clearMemoryCache() { globalConfig.clearMemoryCache(); } /** * 清除磁盘缓存 */ public void clearDiskCache() { globalConfig.clearDiskCache(); } /** * 根据uri清除内存缓存和磁盘缓存 * @param uri */ public void clearCache(String uri) { globalConfig.clearCache(uri); } /** * 根据uri清除内存缓存 * @param uri */ public void clearMemoryCache(String uri) { globalConfig.clearMemoryCache(uri); } /** * 根据uri清除磁盘缓存 * @param uri */ public void clearDiskCache(String uri) { globalConfig.clearDiskCache(uri); } /** * 刷新缓存 */ public void flushCache() { globalConfig.flushCache(); } /** * 关闭缓存 */ public void closeCache() { globalConfig.closeCache(); } /** * 根据uri从磁盘缓存得到位图文件 * @param uri * @return */ public File getBitmapFileFromDiskCache(String uri) { return globalConfig.getBitmapCache().getBitmapFileFromDiskCache(uri); } /** * 根据uri和位图显示配置从磁盘缓存得到位图文件 * @param uri * @param config * @return */ public Bitmap getBitmapFromMemCache(String uri, BitmapDisplayConfig config) { if (config == null) { config = defaultDisplayConfig; } return globalConfig.getBitmapCache().getBitmapFromMemCache(uri, config); } ////////////////////////////////////////// tasks 任务////////////////////////////////////////////////////////////////////// /** * 支持暂停 */ @Override public boolean supportPause() { return true; } /** * 支持重新开始 */ @Override public boolean supportResume() { return true; } /** * 支持取消 */ @Override public boolean supportCancel() { return true; } /** * 暂停 */ @Override public void pause() { pauseTask = true; flushCache(); } /** * 刷新 */ @Override public void resume() { pauseTask = false; synchronized (pauseTaskLock) { pauseTaskLock.notifyAll(); } } /** * 取消 */ @Override public void cancel() { pauseTask = true; cancelAllTask = true; synchronized (pauseTaskLock) { pauseTaskLock.notifyAll(); } } /** * 是否暂停 */ @Override public boolean isPaused() { return pauseTask; } /** * 是否是取消了 */ @Override public boolean isCancelled() { return cancelAllTask; } ////////////////////////////////////////////////下面这些方法是否没有提供给开发者使用的/////////////////////////////////////////////////////////////// @SuppressWarnings("unchecked") private static <T extends View> BitmapLoadTask<T> getBitmapTaskFromContainer(T container, BitmapLoadCallBack<T> callBack) { if (container != null) { final Drawable drawable = callBack.getDrawable(container); if (drawable instanceof AsyncDrawable) { final AsyncDrawable<T> asyncDrawable = (AsyncDrawable<T>) drawable; return asyncDrawable.getBitmapWorkerTask(); } } return null; } private static <T extends View> boolean bitmapLoadTaskExist(T container, String uri, BitmapLoadCallBack<T> callBack) { final BitmapLoadTask<T> oldLoadTask = getBitmapTaskFromContainer(container, callBack); if (oldLoadTask != null) { final String oldUrl = oldLoadTask.uri; if (TextUtils.isEmpty(oldUrl) || !oldUrl.equals(uri)) { oldLoadTask.cancel(true); } else { return true; } } return false; } public class BitmapLoadTask<T extends View> extends PriorityAsyncTask<Object, Object, Bitmap> { private final String uri; private final WeakReference<T> containerReference; private final BitmapLoadCallBack<T> callBack; private final BitmapDisplayConfig displayConfig; private BitmapLoadFrom from = BitmapLoadFrom.DISK_CACHE; public BitmapLoadTask(T container, String uri, BitmapDisplayConfig config, BitmapLoadCallBack<T> callBack) { if (container == null || uri == null || config == null || callBack == null) { throw new IllegalArgumentException("args may not be null"); } this.containerReference = new WeakReference<T>(container); this.callBack = callBack; this.uri = uri; this.displayConfig = config; } @Override protected Bitmap doInBackground(Object... params) { synchronized (pauseTaskLock) { while (pauseTask && !this.isCancelled()) { try { pauseTaskLock.wait(); if (cancelAllTask) { return null; } } catch (Throwable e) { } } } Bitmap bitmap = null; // get cache from disk cache if (!this.isCancelled() && this.getTargetContainer() != null) { this.publishProgress(PROGRESS_LOAD_STARTED); bitmap = globalConfig.getBitmapCache().getBitmapFromDiskCache(uri, displayConfig); } // download image if (bitmap == null && !this.isCancelled() && this.getTargetContainer() != null) { bitmap = globalConfig.getBitmapCache().downloadBitmap(uri, displayConfig, this); from = BitmapLoadFrom.URI; } return bitmap; } public void updateProgress(long total, long current) { this.publishProgress(PROGRESS_LOADING, total, current); } private static final int PROGRESS_LOAD_STARTED = 0; private static final int PROGRESS_LOADING = 1; @Override protected void onProgressUpdate(Object... values) { if (values == null || values.length == 0) return; final T container = this.getTargetContainer(); if (container == null) return; switch ((Integer) values[0]) { case PROGRESS_LOAD_STARTED: callBack.onLoadStarted(container, uri, displayConfig); break; case PROGRESS_LOADING: if (values.length != 3) return; callBack.onLoading(container, uri, displayConfig, (Long) values[1], (Long) values[2]); break; default: break; } } @Override protected void onPostExecute(Bitmap bitmap) { final T container = this.getTargetContainer(); if (container != null) { if (bitmap != null) { callBack.onLoadCompleted( container, this.uri, bitmap, displayConfig, from); } else { callBack.onLoadFailed( container, this.uri, displayConfig.getLoadFailedDrawable()); } } } @Override protected void onCancelled(Bitmap bitmap) { synchronized (pauseTaskLock) { pauseTaskLock.notifyAll(); } } public T getTargetContainer() { final T container = containerReference.get(); final BitmapLoadTask<T> bitmapWorkerTask = getBitmapTaskFromContainer(container, callBack); if (this == bitmapWorkerTask) { return container; } return null; } } }
相关推荐
org.apache.commons.lang3.ClassUtils 源码中文注释,之后会加上其他的工具类注释,方便以后复习阅读
**mtd-utils** 是一组用于管理Memory Technology Device (MTD)的工具,主要用于操作和维护嵌入式系统中的闪存设备。MTD是Linux内核中处理非易失性存储器(如EEPROM、EPROM、NOR和NAND闪存)的子系统。mtd-utils提供...
Linux中的exfat-utils是一个用于在Linux系统上读取、写入和管理ExFAT文件系统的工具集。 "exfat-utils-1.0.1.tar.gz" 是一个包含ExFAT实用程序的源码包,版本号为1.0.1。这个压缩包提供了在Linux环境下操作ExFAT...
"utils.em"中可能包含了一个名为`block-comment`的函数,它允许用户选择一段代码后,通过快捷键或菜单命令一次性为这段代码添加或移除注释。这在编写文档或者调试代码时非常有用,可以大大节省时间。 2. **全选功能...
赠送jar包:qrcode-utils-1.1.jar; 赠送原API文档:qrcode-utils-1.1-javadoc.jar; 赠送源代码:qrcode-utils-1.1-sources.jar;...人性化翻译,文档中的代码和结构保持不变,注释和说明精准翻译,请放心使用。
alsa-utils
Redis Utils工具类是Java开发中常见的一种封装,用于简化与Redis数据库的交互操作。Redis是一种高性能的键值存储系统,广泛应用于缓存、消息队列、数据持久化等多个场景。在Java开发中,为了提高代码的可读性和复用...
注意:在unbuntu上按照压缩文档中的《sg3_utils测试工具交叉编译,静态编译.pdf》进行操作,可自行编译sg3_utils arm64 静态包 sg3_utils ARM64 静态编译链接程序,可直接在arm64平台上运行,用于对scsi 设备进行...
其次,"去注释代码"是指移除代码中的注释部分,这在某些情况下非常有用,比如测试未注释的代码或清理代码库。对于`#if 0`和`#endif`包裹的代码块,这是一种条件编译注释,它们可以被整个地启用或禁用,这在调试或...
此文章用来解释vue-cli脚手架build目录中的utils.js配置文件 1.此配置文件是vue开发环境的wepack相关配置文件,主要用来处理css-loader和vue-style-loader 2.关于注释 •当涉及到较复杂的解释我将通过标识的方式...
本文将详细探讨ext4_utils的原理、功能及在三星线刷ROM制作过程中的应用。 一、ext4文件系统概述 ext4是Linux系统的第四代扩展文件系统,是对ext3的改进版本,旨在提高性能和可靠性。它引入了多项新特性,如更大的...
在本篇文章中,我们将深入探讨Plexus Utils库的两个主要版本——2.0.4和3.2.0——以及它们包含的关键特性。 首先,我们来看Plexus Utils 2.0.4。这个版本发布于2011年,主要服务于早期的Maven和Plexus项目。2.0.4版...
《Linux系统中的BlueZ-utils-3.36:蓝牙功能移植与应用详解》 在Linux操作系统的世界里,蓝牙技术的运用日益广泛,特别是在设备间的数据传输、无线音频播放以及物联网(IoT)设备的交互中扮演着关键角色。BlueZ是...
Base64Utils是一个Java库,通常用于在编程中进行Base64编码和解码。Base64是一种将二进制数据转换为可打印字符的方法,以便在不支持二进制数据的环境中(如电子邮件系统)传输。这个jar包是专门为Java开发者设计的,...
1、Utils工具类有String工具类、XmlNode节点工具类、BeanFactory相关、Common工具类、Cookie工具类、Date工具类、Http工具类、JDBC工具类、日志Log工具类、Servlet相关等。2、工具类省了重复造轮子的工作,可以直接...
`can-socket`是CANutils中的一个关键工具,它允许用户通过Linux的socketCAN接口与CAN总线进行交互。socketCAN是Linux内核提供的一个框架,使得应用程序可以通过标准的套接字API来访问CAN接口。 **can-socket基本...
在Android应用开发中,工具类(Utils)是程序员经常使用的辅助类库,它们包含了各种实用方法,可以帮助开发者高效地处理日常编程任务。本篇将详细阐述`Android常用工具类Utils`的相关知识点,涵盖系统操作、图像处理...
1. **下载离线包**:如描述中提到的,可以使用`yum`命令的`--downloadonly`选项将`nfs-utils`包下载到指定目录,例如 `/root/nfs`。命令如下: ``` yum -y install --downloadonly --downloaddir /root/nfs nfs-...
Java Property Utils是Java开发中的一个实用工具库,主要用于处理和操作Java系统属性和配置文件。在给定的场景中,`java-property-utils-1.9.1.jar` 和 `java-property-utils-1.10.jar` 是这个库的两个不同版本,...
[root@localhost yum-utils]# rpm -qa |grep yum-utils 卸载 [root@localhost yum-utils]# rpm -e --nodeps yum-utils-1.1.31-40.el7.noarch 上传离线版本包并解压 安装 [root@localhost yum-utils]# rpm -ivh...