Android开发之一种简单的异步加载图片方法

简介:

首先说明的是,该方法已经被我抛弃了。之前用它,发现加载速度不好。具体没怎么细心的看。

现在我用volley了。拿出来只是给大家批判的。

package com.souya.seller.util.ex;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.lang.ref.SoftReference;
import java.util.HashMap;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

import AXLib.Utility.Console;
import AXLib.Utility.HttpClient;
import AXLib.Utility.Queue;
import AXLib.Utility.RuntimeExceptionEx;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.media.ThumbnailUtils;
import android.net.Uri;
import android.os.Handler;
import android.os.Message;
import android.provider.MediaStore.Video.Thumbnails;
import android.util.Log;
import android.widget.ImageView;

import com.souya.seller.app.SellerApplication;


public class AsyncImageLoader {
	private static boolean _D =  false;//AppConfig._D &&
	private static final String TAG = "AsyncImageLoader";
	public static String CachePath = null;
	private static String ThumbnailPath = null;
	private static boolean _isInit = false;
	private static Context _ctx;
	private static Bitmap _empty = Bitmap.createBitmap(1, 1, Bitmap.Config.RGB_565);
	private static HashMap<String, SoftReference<Bitmap>> imageCache = new HashMap<String, SoftReference<Bitmap>>();
	private static Queue<Runnable> queue = new Queue<Runnable>();
	// 线程池:最大50条,每次执行:1条,空闲线程结束的超时时间:180秒
	private static ThreadPoolExecutor executor = new ThreadPoolExecutor(1, 20, 300, TimeUnit.SECONDS, queue);
	public final static AsyncImageLoader Instance = new AsyncImageLoader();

	public static void Init(final Context context) {
		CachePath = SellerApplication.getInstance().mAppCacheDir + "";
		ThumbnailPath = CachePath + "/thumbnails";
		if (!new File(ThumbnailPath).exists())
			new File(ThumbnailPath).mkdirs();
		_ctx = context;
		_isInit = true;
	}

	public static Drawable loadDrawable(final Context context, final String url, final ImageCallback imageCallback) {
		if (!_isInit)
			Init(context);
		final String key = url;
		synchronized (imageCache) {
			if (imageCache.containsKey(key)) {
				SoftReference<Bitmap> softReference = imageCache.get(key);
				Bitmap bmp = softReference.get();
				if (bmp != null && !bmp.isRecycled()) {
					if (bmp == _empty) {
						bmp = bmp;
					} else
						return new BitmapDrawable(bmp);
				}
			} else {
				imageCache.put(key, new SoftReference<Bitmap>(_empty));
			}
		}

		final Handler handler = new Handler() {
			public void handleMessage(Message message) {
				imageCallback.imageLoaded((Drawable) message.obj, url);
			}
		};

		// 用线程池来做下载图片的任务
		executor.execute(new Runnable() {
			@Override
			public void run() {
				Bitmap bmp = loadImage(url);
				if (bmp != null) {
					synchronized (imageCache) {
						if (imageCache.containsKey(key)) {
							imageCache.put(key, new SoftReference<Bitmap>(bmp));
							Message message = handler.obtainMessage(0, new BitmapDrawable(bmp));
							handler.sendMessage(message);
						} else {
							if (!bmp.isRecycled())
								bmp.recycle();
							bmp = null;
							System.gc();
						}
					}
				}
			}
		});
		return null;
	}

	public static Drawable loadDrawable(final Context context, final String url, final int width, final int height, final ImageCallback imageCallback) {
		if (!_isInit)
			Init(context);
		final String key = String.format("%s_%d_%d", url, width, height);
		if (imageCache.containsKey(key)) {
			SoftReference<Bitmap> softReference = imageCache.get(key);
			Bitmap bmp = softReference.get();
			if (bmp != null && !bmp.isRecycled()) {
				if (bmp == _empty) {
					bmp = bmp;
				} else
					return new BitmapDrawable(bmp);
			}

		} else {
			imageCache.put(key, new SoftReference<Bitmap>(_empty));
		}

		final Handler handler = new Handler() {
			public void handleMessage(Message message) {
				imageCallback.imageLoaded((Drawable) message.obj, url);
			}
		};

		// 用线程池来做下载图片的任务
		executor.execute(new Runnable() {
			@Override
			public void run() {
				Bitmap bmp = loadImageAndScale(url, width, height);
				if (imageCache.containsKey(key)) {
					imageCache.put(key, new SoftReference<Bitmap>(bmp));
					Message message = handler.obtainMessage(0, new BitmapDrawable(bmp));
					handler.sendMessage(message);
				} else {
					if (!bmp.isRecycled())
						bmp.recycle();
					bmp = null;
					System.gc();
				}
			}
		});

		return null;
	}
 

	public static void releaseDrawable(String url, int width, int height) {
		log("releaseDrawable" + url);
		String key = String.format("%s_%d_%d", url, width, height);
		releaseDrawable(key);

	}

	public static void releaseDrawable(String url) {
		try {
			log("releaseDrawable" + url);
			String key = url;
			synchronized (imageCache) {
				if (imageCache.containsKey(key)) {
					SoftReference<Bitmap> softReference = imageCache.get(key);
					imageCache.remove(key);
					Bitmap bmp = softReference.get();
					if (bmp != null && bmp != _empty && !bmp.isRecycled()) {
						bmp.recycle();
						bmp = null;
					}
					System.gc();
				}
			}
		} catch (Exception e) {
			String stack = RuntimeExceptionEx.GetStackTraceString(e);

		}
	}

	private static HashMap<String, Object> _loadImageLocks = new HashMap<String, Object>();

	public static Bitmap loadImage(String url) {
		log("londImage:" + url);
		Object lockObj = null;
		synchronized (_loadImageLocks) {
			if (_loadImageLocks.containsKey(url))
				lockObj = _loadImageLocks.get(url);
			else {
				lockObj = new Object();
				_loadImageLocks.put(url, lockObj);
			}
		}
		synchronized (lockObj) {
			if (isLocalImage(url))
				return loadLocalImage(url);
			else {
				String localUrl = getCacheFileName(url);
				Bitmap bmp = null;
				if (new File(localUrl).exists())
					bmp = loadLocalImage(localUrl);
				try {
					if (bmp == null)
						bmp = loadHttpImage(url, 0, 0);
				} catch (Throwable e) {
					if (_D)
						throw RuntimeExceptionEx.Create(e);
				}
				return bmp;
			}
		}

	}

	public static Bitmap loadImage(String url, int width, int height) {
		log("londImage:" + url);
		Object lockObj = null;
		synchronized (_loadImageLocks) {
			if (_loadImageLocks.containsKey(url))
				lockObj = _loadImageLocks.get(url);
			else {
				lockObj = new Object();
				_loadImageLocks.put(url, lockObj);
			}
		}
		synchronized (lockObj) {
			if (isLocalImage(url))
				return loadLocalImage(url, width, height);
			else {
				String localUrl = getCacheFileName(url);
				Bitmap bmp = null;
				if (new File(localUrl).exists())
					bmp = loadLocalImage(localUrl, width, height);
				try {
					if (bmp == null)
						bmp = loadHttpImage(url, width, height);
				} catch (Throwable e) {
					if (_D)
						throw RuntimeExceptionEx.Create(e);
				}
				return bmp;
			}
		}

	}

	private static Bitmap loadLocalImageByVideo(String url) {
		log("loadLocalImageByVideo:" + url);
		if (!new File(url).exists())
			return null;
		Bitmap bmp = ThumbnailUtils.createVideoThumbnail(url, Thumbnails.MINI_KIND);
		return bmp;
	}

	private static Bitmap loadLocalImage(String url) {
		return loadLocalImage(url, 0);
	}

	private static Bitmap loadLocalImage(String url, int width, int height) {
		if (width == 0 && height == 0)
			return loadLocalImage(url);
		else
			return _loadLocalImage(url, width, height);
	}

	private static Bitmap _loadLocalImage(String url, int width, int height) {
		try {

			if (!new File(url).exists())
				return null;

			// 获取屏幕的宽和高
			/**
			 * 为了计算缩放的比例,我们需要获取整个图片的尺寸,而不是图片
			 * BitmapFactory.Options类中有一个布尔型变量inJustDecodeBounds,将其设置为true
			 * 这样,我们获取到的就是图片的尺寸,而不用加载图片了。 当我们设置这个值的时候,我们接着就可以从BitmapFactory.
			 * Options的outWidth和outHeight中获取到值
			 */
			BitmapFactory.Options op = new BitmapFactory.Options();
			op.inJustDecodeBounds = true;

			Uri uri = Uri.fromFile(new File(url));

			// 由于使用了MediaStore存储,这里根据URI获取输入流的形式
			Bitmap pic = BitmapFactory.decodeStream(_ctx.getContentResolver().openInputStream(uri), null, op);

			int wRatio = (int) Math.ceil(op.outWidth / (float) width); // 计算宽度比例
			int hRatio = (int) Math.ceil(op.outHeight / (float) height); // 计算高度比例
			if (pic != null && !pic.isRecycled())
				pic.recycle();
			/**
			 * 接下来,我们就需要判断是否需要缩放以及到底对宽还是高进行缩放。 如果高和宽不是全都超出了屏幕,那么无需缩放。
			 * 如果高和宽都超出了屏幕大小,则如何选择缩放呢》 这需要判断wRatio和hRatio的大小
			 * 大的一个将被缩放,因为缩放大的时,小的应该自动进行同比率缩放。 缩放使用的还是inSampleSize变量
			 */
			if (wRatio > 1 && hRatio > 1) {
				if (wRatio > hRatio) {
					op.inSampleSize = wRatio;
				} else {
					op.inSampleSize = hRatio;
				}
			}
			op.inJustDecodeBounds = false; // 注意这里,一定要设置为false,因为上面我们将其设置为true来获取图片尺寸了
			try {
				pic = BitmapFactory.decodeStream(_ctx.getContentResolver().openInputStream(uri), null, op);
			} catch (OutOfMemoryError e) {
				loadLocalImage(url, 1);
			}
			return pic;
		} catch (Throwable e) {
			throw RuntimeExceptionEx.Create(e);
		}
	}

	private static Bitmap loadLocalImage(String url, int inSampleSize) {
		log("loadLocalImage:" + url);
		if (!new File(url).exists())
			return null;
		if (url.endsWith(".mp4") || url.endsWith(".3gp")) {
			return loadLocalImageByVideo(url);
		}
		BitmapFactory.Options opt = new BitmapFactory.Options();
		// opt.inPreferredConfig = Bitmap.Config.RGB_565;
		// opt.inPurgeable = true;
		// opt.inInputShareable = true;
		opt.inSampleSize = inSampleSize;
		// 获取资源图片
		InputStream is = null;
		try {
			is = new FileInputStream(url);
			if (is != null) {

				Bitmap map = BitmapFactory.decodeStream(is, null, opt);
				if (map == null)
					return null;
				int height = map.getHeight();
				int width = map.getWidth();

				if (width > 1920 || height > 1080) {
					if (inSampleSize == 0)
						inSampleSize = 2;
					else
						inSampleSize++;
					if (is != null) {
						try {
							is.close();
						} catch (Exception ex) {

						}
					}
					map.recycle();
					map = null;
					return loadLocalImage(url, inSampleSize);
				} else {
					return map;
				}
			}
		} catch (OutOfMemoryError e) {
			if (is != null) {
				try {
					is.close();
				} catch (Exception ex) {

				}
			}
			System.gc();
			if (inSampleSize < 50) {
				if (inSampleSize == 0)
					inSampleSize = 2;
				else
					inSampleSize++;
				return loadLocalImage(url, inSampleSize);
			} else
				return null;

		} catch (Throwable e) {
			String stack = RuntimeExceptionEx.GetStackTraceString(e);
			//CLLog.Error(e);
			//if (_D)
		    //	throw RuntimeExceptionEx.Create(e);
		} finally {
			if (is != null) {
				try {
					is.close();
				} catch (Exception e) {

				}
			}
			System.gc();

		}
		return null;
	}

	private static Bitmap loadHttpImage(String url, int width, int height) {
		log("loadHttpImage:" + url);
		String localUrl = getCacheFileName(url);
		try {
			HttpClient hc = new HttpClient();
			if (hc.downFile(url, localUrl))
				return loadLocalImage(localUrl, width, height);
			else
				return null;
		} catch (Exception e) {
			String stack = RuntimeExceptionEx.GetStackTraceString(e);
			//CLLog.Error(e);
			//if (_D)
			//	throw RuntimeExceptionEx.Create(e);
		}

		return null;
	}

	public static Bitmap loadImageAndScale(String url, int width, int height) {
		log("loadImageAndScale:" + url);
		String thumbnailUrl = getThumbnailFileName(url, width, height);
		Bitmap bmp = loadLocalImage(url, width, height);
		if (bmp == null) {
			try {
				bmp = loadImage(url, width, height);
			} catch (Exception e) {
				String stack = RuntimeExceptionEx.GetStackTraceString(e);
			}
			if (bmp != null) {
				Bitmap bmpThumbnail = ImageHelper.ScaleAndSave(bmp, thumbnailUrl, width, height, true, true);
				if (bmpThumbnail != bmp && !bmp.isRecycled())
					bmp.recycle();
				bmp = null;
				System.gc();
				bmp = bmpThumbnail;
			}
		}
		return bmp;
	}

	private static boolean isLocalImage(String url) {
		return new File(url).exists();
	}

	private static String getCacheFileName(String url) {
		if (isLocalImage(url))
			return url;
		String localUrl = null;
		if (url != null && url.length() != 0) {
			localUrl = CachePath + "/" + url.substring(url.lastIndexOf("/") + 1);
		}
		return localUrl;
	}

	private static String getThumbnailFileName(String url, int width, int height) {
		String thumbnailUrl = null;
		if (url != null && url.length() != 0) {
			thumbnailUrl = String.format("%s/%d_%d_%s", ThumbnailPath, width, height, url.substring(url.lastIndexOf("/") + 1));
		}
		return thumbnailUrl;
	}

	private static void log(String msg) {
		// Console.d("AsyncImageLoader", msg);
	}

	public interface ImageCallback {
		public void imageLoaded(Drawable imageDrawable, String imageUrl);
	}

}


相关文章
|
18天前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
24天前
|
搜索推荐 Android开发 开发者
探索安卓开发中的自定义视图:打造个性化UI组件
【10月更文挑战第39天】在安卓开发的世界中,自定义视图是实现独特界面设计的关键。本文将引导你理解自定义视图的概念、创建流程,以及如何通过它们增强应用的用户体验。我们将从基础出发,逐步深入,最终让你能够自信地设计和实现专属的UI组件。
|
6天前
|
搜索推荐 前端开发 API
探索安卓开发中的自定义视图:打造个性化用户界面
在安卓应用开发的广阔天地中,自定义视图是一块神奇的画布,让开发者能够突破标准控件的限制,绘制出独一无二的用户界面。本文将带你走进自定义视图的世界,从基础概念到实战技巧,逐步揭示如何在安卓平台上创建和运用自定义视图来提升用户体验。无论你是初学者还是有一定经验的开发者,这篇文章都将为你打开新的视野,让你的应用在众多同质化产品中脱颖而出。
33 19
|
10天前
|
Java 调度 Android开发
安卓与iOS开发中的线程管理差异解析
在移动应用开发的广阔天地中,安卓和iOS两大平台各自拥有独特的魅力。如同东西方文化的差异,它们在处理多线程任务时也展现出不同的哲学。本文将带你穿梭于这两个平台之间,比较它们在线程管理上的核心理念、实现方式及性能考量,助你成为跨平台的编程高手。
|
26天前
|
Android开发 Swift iOS开发
探索安卓与iOS开发的差异和挑战
【10月更文挑战第37天】在移动应用开发的广阔舞台上,安卓和iOS这两大操作系统扮演着主角。它们各自拥有独特的特性、优势以及面临的开发挑战。本文将深入探讨这两个平台在开发过程中的主要差异,从编程语言到用户界面设计,再到市场分布的不同影响,旨在为开发者提供一个全面的视角,帮助他们更好地理解并应对在不同平台上进行应用开发时可能遇到的难题和机遇。
|
26天前
|
存储 API 开发工具
探索安卓开发:从基础到进阶
【10月更文挑战第37天】在这篇文章中,我们将一起探索安卓开发的奥秘。无论你是初学者还是有经验的开发者,这篇文章都将为你提供有价值的信息和建议。我们将从安卓开发的基础开始,逐步深入到更复杂的主题,如自定义组件、性能优化等。最后,我们将通过一个代码示例来展示如何实现一个简单的安卓应用。让我们一起开始吧!
|
6天前
|
Java Android开发 开发者
探索安卓开发:构建你的第一个“Hello World”应用
在安卓开发的浩瀚海洋中,每个新手都渴望扬帆起航。本文将作为你的指南针,引领你通过创建一个简单的“Hello World”应用,迈出安卓开发的第一步。我们将一起搭建开发环境、了解基本概念,并编写第一行代码。就像印度圣雄甘地所说:“你必须成为你希望在世界上看到的改变。”让我们一起开始这段旅程,成为我们想要见到的开发者吧!
13 0
|
7月前
|
存储 Java 开发工具
Android开发的技术与开发流程
Android开发的技术与开发流程
405 1
|
4月前
|
移动开发 搜索推荐 Android开发
安卓与iOS开发:一场跨平台的技术角逐
在移动开发的广阔舞台上,两大主角——安卓和iOS,持续上演着激烈的技术角逐。本文将深入浅出地探讨这两个平台的开发环境、工具和未来趋势,旨在为开发者揭示跨平台开发的秘密,同时激发读者对技术进步的思考和对未来的期待。
|
4月前
|
安全 Android开发 Swift
安卓与iOS开发:平台差异与技术选择
【8月更文挑战第26天】 在移动应用开发的广阔天地中,安卓和iOS两大平台各占一方。本文旨在探索这两个系统在开发过程中的不同之处,并分析开发者如何根据项目需求选择合适的技术栈。通过深入浅出的对比,我们将揭示各自平台的优势与挑战,帮助开发者做出更明智的决策。
76 5