博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android-----第三方 ImageLoader 的简单配置和使用
阅读量:5058 次
发布时间:2019-06-12

本文共 3219 字,大约阅读时间需要 10 分钟。

      ImageLoader 的简单使用配置,最好是将配置信息放到application里面,这样我们就不需要每次使用都需要配置了

     1、首先我们得有一个包

      

    2、简单的配置信息

     

     

1         //显示图片的配置 2         DisplayImageOptions options = new DisplayImageOptions.Builder() 3                 .showImageOnLoading(R.drawable.ofm_photo_icon)   //下载时显示的图片 4                 .showImageForEmptyUri(R.drawable.ic_launcher)    //设置图片Uri为空或是错误的时候显示的图片 5                 .showImageOnFail(R.drawable.main_head_erroy_loader)      //下载 错误 显示的图片 6                 .cacheInMemory(true)    //加入 到缓存 7                 .cacheOnDisk(true)      //写入 内存卡 8                 .bitmapConfig(Bitmap.Config.RGB_565)   //图片清晰度 9                 .imageScaleType(ImageScaleType.EXACTLY) //设置图片以如何的编码方式显示10                 .build();11         cacheDir = StorageUtils.getOwnCacheDirectory(getApplicationContext(),getPackageName()+"/imageCatch");//设置缓存的路径12         ImageLoaderConfiguration config = new ImageLoaderConfiguration13                 .Builder(getApplicationContext())14                 .memoryCacheExtraOptions(480, 800) // max width, max height,即保存的每个缓存文件的最大长宽15                 .threadPoolSize(3)//线程池内加载的数量16                 .threadPriority(Thread.NORM_PRIORITY - 2)17                 .denyCacheImageMultipleSizesInMemory()18                 //设置内存缓存的大小为手机运行内存的   1/819                 .memoryCacheSize((int) Runtime.getRuntime().maxMemory() / 8)20                 .diskCacheSize(10 * 1024 * 1024)   //缓存大小 10M21                 .diskCacheFileNameGenerator(new HashCodeFileNameGenerator())   //将保存的时候的URI名称用 加密22                 .tasksProcessingOrder(QueueProcessingType.LIFO)23                 .diskCacheFileCount(100) //缓存的文件数量24                 .diskCache(new UnlimitedDiskCache(cacheDir))     //自定义缓存路径25                 .defaultDisplayImageOptions(DisplayImageOptions.createSimple())26                 .imageDownloader(new BaseImageDownloader(getApplicationContext(), 5 * 1000, 30 * 1000)) // connectTimeout (30 s), readTimeout (30 s)超时时间27                 .defaultDisplayImageOptions(options)28 //                .writeDebugLogs() // Remove for release app29                 .build();  //开始构建30         //初始化ImageLoader31         ImageLoader.getInstance().init(config);

  3、使用ImageLoader

      第一个参数为图片的Url,第二个参数为显示图片的ImageView。

//网络请求加载图片        ImageLoader.getInstance().displayImage(newsList.get(position).getImg(), imageView);

  若显示的图片配置信息和application配置的不同,可以自己再次另行设置

1  private void loadImage(ImageView imageView,int position){ 2         //显示图片的配置 3         DisplayImageOptions options = new DisplayImageOptions.Builder() 4                 .showImageOnLoading(R.drawable.ofm_photo_icon)   //下载时显示的图片 5                 .showImageForEmptyUri(R.drawable.ic_launcher)    //设置图片Uri为空或是错误的时候显示的图片 6                 .showImageOnFail(R.drawable.card_photofail)      //下载 错误 显示的图片 7                 .cacheInMemory(true)    //加入 到缓存 8                 .cacheOnDisk(true)      //写入 内存卡 9                 .bitmapConfig(Bitmap.Config.RGB_565)   //图片清晰度10                 .imageScaleType(ImageScaleType.EXACTLY)  //设置图片以如何的编码方式显示11                 .build();12         //网络请求加载图片13         ImageLoader.getInstance().displayImage(newsList.get(position).getImg(), imageView, options);14     }

 

转载于:https://www.cnblogs.com/819158327fan/p/4889660.html

你可能感兴趣的文章
FreeBSD方式安装 MAC OSX
查看>>
Linux 根文件系统制作
查看>>
IOS--沙盒机制
查看>>
My.Ioc 的性能
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
hdoj 1846 Brave Game(巴什博弈)
查看>>
Round #345 B. Beautiful Paintings(Div.2)
查看>>
51nod 1018排序
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
linux swoole
查看>>
An Easy Problem?! - POJ 2826(求面积)
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
css3实现循环执行动画,且动画每次都有延迟
查看>>
更改git仓库地址
查看>>
有标号DAG计数 [容斥原理 子集反演 组合数学 fft]
查看>>
Recipe 1.4. Reversing a String by Words or Characters
查看>>
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
查看>>
sql注入
查看>>