OkBitmap自定义图片加载框架

前言:前几天做了个小功能,就是加载图片需要带cookie,总之接口就是很傻比很令人费解,哎,**也就这样了吧!?一切都是那么的傻逼就对了。因为项目里我用的是张洪洋的封装okhttp,所以自己借鉴了几篇文章,整理了一个小框架,总共5个类,如下。

先上个使用方法吧,看,就是这么简单。

/*fangyc 因为要带cookie,所以统一使用okhttp*/
        OkBitmap.okDisPlay(imageView, data);

1、内存缓存类

/**
 * 三级缓存之内存缓存
 */
public class MemoryCacheUtils {

    // private HashMap mMemoryCache=new HashMap<>();//1.因为强引用,容易造成内存溢出,所以考虑使用下面弱引用的方法
    // private HashMap> mMemoryCache = new HashMap<>();//2.因为在Android2.3+后,系统会优先考虑回收弱引用对象,官方提出使用LruCache
    private LruCache mMemoryCache;

    public MemoryCacheUtils(){
       final long maxMemory = Runtime.getRuntime().maxMemory()/8;//得到手机最大允许内存的1/8,即超过指定内存,则开始回收
        //需要传入允许的内存最大值,虚拟机默认内存16M,真机不一定相同
        mMemoryCache=new LruCache((int) maxMemory){
            //用于计算每个条目的大小
            @Override
            protected int sizeOf(String key, Bitmap value) {
                int byteCount = value.getByteCount();
                Log.i("MemoryCacheUtils", "每个Bitmap大小:" + byteCount + "每个程序最大内存" + maxMemory);
                return byteCount;
            }
        };

    }

    /**
     * 从内存中读图片
     * @param url
     */
    public Bitmap getBitmapFromMemory(String url) {
        //Bitmap bitmap = mMemoryCache.get(url);//1.强引用方法
            /*2.弱引用方法
            SoftReference bitmapSoftReference = mMemoryCache.get(url);
            if (bitmapSoftReference != null) {
                Bitmap bitmap = bitmapSoftReference.get();
                return bitmap;
            }
            */
        Bitmap bitmap = mMemoryCache.get(url);
        return bitmap;

    }

    /**
     * 往内存中写图片
     * @param url
     * @param bitmap
     */
    public void setBitmapToMemory(String url, Bitmap bitmap) {
        //mMemoryCache.put(url, bitmap);//1.强引用方法
            /*2.弱引用方法
            mMemoryCache.put(url, new SoftReference<>(bitmap));
            */
        mMemoryCache.put(url,bitmap);
    }
}

//作者:wanbo_
//        链接:http://www.jianshu.com/p/2cd59a79ed4a
//        來源:
//        著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

2、本地缓存类

/**
 * 三级缓存之本地缓存
 */
public class LocalCacheUtils {

    private static final String CACHE_PATH= Environment.getExternalStorageDirectory().getAbsolutePath()+"/WerbNews";

    /**
     * 从本地读取图片
     * @param url
     */
    public Bitmap getBitmapFromLocal(String url){
        String fileName = null;//把图片的url当做文件名,并进行MD5加密
        try {
            fileName = MD5Encoder.encode(url);
            File file=new File(CACHE_PATH,fileName);

            Bitmap bitmap = BitmapFactory.decodeStream(new FileInputStream(file));

            return bitmap;
        } catch (Exception e) {
            e.printStackTrace();
        }

        return null;
    }

    /**
     * 从网络获取图片后,保存至本地缓存
     * @param url
     * @param bitmap
     */
    public void setBitmapToLocal(String url,Bitmap bitmap){
        try {
            String fileName = MD5Encoder.encode(url);//把图片的url当做文件名,并进行MD5加密
            File file=new File(CACHE_PATH,fileName);

            //通过得到文件的父文件,判断父文件是否存在
            File parentFile = file.getParentFile();
            if (!parentFile.exists()){
                parentFile.mkdirs();
            }

            //把图片保存至本地
            bitmap.compress(Bitmap.CompressFormat.JPEG,100,new FileOutputStream(file));
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

//作者:wanbo_
//        链接:http://www.jianshu.com/p/2cd59a79ed4a
//        來源:
//        著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

3、加密工具类,在LocalCacheUtils中有使用到

/**
 * MD5加密工具包
 * @author Administrator
 *
 */
public class MD5Encoder {
    private static StringBuilder sb;

    public static String encode(String str){

        try {
            //获取MD5加密器
            MessageDigest md = MessageDigest.getInstance("MD5");
            byte[] bytes = str.getBytes();
            byte[] digest = md.digest(bytes);
            sb = new StringBuilder();
            for (byte b : digest) {
                //把每个字节转成16进制数
                int d = b & 0xff;
                String hexString = Integer.toHexString(d);
                if (hexString.length() == 1) {
                    hexString = "0" + hexString;
                }
                sb.append(hexString);
                System.out.println();
            }
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        }

        return sb + "";
    }
}

4、原生的网络加载类

/**
 * 三级缓存之网络缓存
 */
public class NetCacheUtils {

    private LocalCacheUtils mLocalCacheUtils;
    private MemoryCacheUtils mMemoryCacheUtils;

    public NetCacheUtils(LocalCacheUtils localCacheUtils, MemoryCacheUtils memoryCacheUtils) {
        mLocalCacheUtils = localCacheUtils;
        mMemoryCacheUtils = memoryCacheUtils;
    }

    /**
     * 从网络下载图片
     * @param ivPic 显示图片的imageview
     * @param url   下载图片的网络地址
     */
    public void getBitmapFromNet(ImageView ivPic, String url) {
        new BitmapTask().execute(ivPic, url);//启动AsyncTask

    }

    /**
     * AsyncTask就是对handler和线程池的封装
     * 第一个泛型:参数类型
     * 第二个泛型:更新进度的泛型
     * 第三个泛型:onPostExecute的返回结果
     */
    class BitmapTask extends AsyncTask {

        private ImageView ivPic;
        private String url;

        /**
         * 后台耗时操作,存在于子线程中
         * @param params
         * @return
         */
        @Override
        protected Bitmap doInBackground(Object[] params) {
            ivPic = (ImageView) params[0];
            url = (String) params[1];

            return downLoadBitmap(url);
        }

        /**
         * 更新进度,在主线程中
         * @param values
         */
        @Override
        protected void onProgressUpdate(Void[] values) {
            super.onProgressUpdate(values);
        }

        /**
         * 耗时方法结束后执行该方法,主线程中
         * @param result
         */
        @Override
        protected void onPostExecute(Bitmap result) {
            if (result != null) {
                ivPic.setImageBitmap(result);
                System.out.println("从网络缓存图片啦.....");

                //从网络获取图片后,保存至本地缓存
                mLocalCacheUtils.setBitmapToLocal(url, result);
                //保存至内存中
                mMemoryCacheUtils.setBitmapToMemory(url, result);

            }
        }
    }

    /**
     * 网络下载图片
     * @param url
     * @return
     */
    private Bitmap downLoadBitmap(String url) {
        HttpURLConnection conn = null;
        try {
            conn = (HttpURLConnection) new URL(url).openConnection();
            conn.setConnectTimeout(5000);
            conn.setReadTimeout(5000);
            conn.setRequestMethod("GET");

            int responseCode = conn.getResponseCode();
            if (responseCode == 200) {
                //图片压缩
                BitmapFactory.Options options = new BitmapFactory.Options();
                options.inSampleSize=2;//宽高压缩为原来的1/2
                options.inPreferredConfig=Bitmap.Config.ARGB_4444;
                Bitmap bitmap = BitmapFactory.decodeStream(conn.getInputStream(),null,options);
                return bitmap;
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            conn.disconnect();
        }

        return null;
    }
}

//作者:wanbo_
//        链接:http://www.jianshu.com/p/2cd59a79ed4a
//        來源:
//        著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

5、最后一个,供调用的静态类。其中一个方法需要使用到okhttp,可以将这几个类整合到okhttp中,如若没有使用okhttp,也可以将改方法屏蔽,直接使用原生类加载网络图片也行。

/**
 * @desc 很粗糙的图片加载
 * @auth 方毅超
 * @time 2017/9/13 16:50
 */

public class OkBitmap {

//    private static OkBitmap okBitmap;

    private static NetCacheUtils mNetCacheUtils;
    private static LocalCacheUtils mLocalCacheUtils;
    private static MemoryCacheUtils mMemoryCacheUtils;


    static {
//        okBitmap = new OkBitmap();
        mMemoryCacheUtils = new MemoryCacheUtils();
        mLocalCacheUtils = new LocalCacheUtils();
        mNetCacheUtils = new NetCacheUtils(mLocalCacheUtils, mMemoryCacheUtils);
    }

    public static void disPlay(ImageView ivPic, String url) {
//        ivPic.setImageResource(R.mipmap.logo_ehome);
        Bitmap bitmap;
        //内存缓存
        bitmap = mMemoryCacheUtils.getBitmapFromMemory(url);
        if (bitmap != null) {
            ivPic.setImageBitmap(bitmap);
            System.out.println("从内存获取图片啦.....");
            return;
        }

        //本地缓存
        bitmap = mLocalCacheUtils.getBitmapFromLocal(url);
        if (bitmap != null) {
            ivPic.setImageBitmap(bitmap);
            System.out.println("从本地获取图片啦.....");
            //从本地获取图片后,保存至内存中
            mMemoryCacheUtils.setBitmapToMemory(url, bitmap);
            return;
        }
        //网络缓存
        mNetCacheUtils.getBitmapFromNet(ivPic, url);
    }

    //fangyc 2017-09-13 使用okhttp请求
    public static void okDisPlay(final ImageView ivPic, final String url) {
//        ivPic.setImageResource(R.mipmap.logo_ehome);
        Bitmap bitmap;
        //内存缓存
        bitmap = mMemoryCacheUtils.getBitmapFromMemory(url);
        if (bitmap != null) {
            ivPic.setImageBitmap(bitmap);
            System.out.println("从内存获取图片啦.....");
            return;
        }

        //本地缓存
        bitmap = mLocalCacheUtils.getBitmapFromLocal(url);
        if (bitmap != null) {
            ivPic.setImageBitmap(bitmap);
            System.out.println("从本地获取图片啦.....");
            //从本地获取图片后,保存至内存中
            mMemoryCacheUtils.setBitmapToMemory(url, bitmap);
            return;
        }
        //网络缓存
//        mNetCacheUtils.getBitmapFromNet(ivPic, url);
         /*fangyc 因为要带cookie,所以统一使用okhttp*/
        OkHttpUtils.get().url(url).build().execute(new BitmapCallback() {
            @Override
            public void onError(Call call, Exception e, int id) {
//                ivPic.setImageResource(R.drawable.defauit);
            }

            @Override
            public void onResponse(Bitmap response, int id) {
                ivPic.setImageBitmap(response);
                //从网络获取图片后,保存至本地缓存
                mLocalCacheUtils.setBitmapToLocal(url, response);
                //保存至内存中
                mMemoryCacheUtils.setBitmapToMemory(url, response);
            }
        });
    }


//    String url;
//    int resourceId;
////    ImageView imageView;
////    static Context mContext;
//
//    public static OkBitmap init(){
////        mContext = ctx;
//        return okBitmap;
//    }
//
//    public OkBitmap load(String string) {
//        this.url = string;
//        return this;
//    }
//
//
//    public OkBitmap placeholder(int resourceId) {
//        this.resourceId = resourceId;
//        return this;
//    }
//
//
//    public OkBitmap into(ImageView view) {
////        this.imageView = view;
//        return this;
//    }
}

你可能感兴趣的:(OkBitmap自定义图片加载框架)