ImageLoader

来源:互联网 发布:数字照度计软件 编辑:程序博客网 时间:2024/05/17 22:45

//Application

public class App extends Application{    @Override    public void onCreate() {        super.onCreate();        DisplayImageOptions options = new DisplayImageOptions.Builder()                .showImageOnLoading(R.mipmap.ic_launcher).cacheInMemory(true)                .cacheOnDisk(true).displayer(new FadeInBitmapDisplayer(1500))                .displayer(new RoundedBitmapDisplayer(20)) // default  还可以设置圆角图片new RoundedBitmapDisplayer(20)                .showImageOnLoading(R.mipmap.ic_launcher) // 设置图片下载期间显示的图片                .showImageForEmptyUri(R.mipmap.ic_launcher) // 设置图片Uri为空或是错误的时候显示的图片                .showImageOnFail(R.mipmap.ic_launcher) // 设置图片加载或解码过程中发生错误显示的图片                .build();        ImageLoaderConfiguration config = new ImageLoaderConfiguration                .Builder(this)                .memoryCacheExtraOptions(480, 800) // max width, max height,即保存的每个缓存文件的最大长宽                .threadPoolSize(5)//线程池内加载的数量                .threadPriority(Thread.NORM_PRIORITY - 2)  // default 设置当前线程的优先级                .denyCacheImageMultipleSizesInMemory()//拒绝缓存多个图片。                .memoryCache(new UsingFreqLimitedMemoryCache(2 * 1024 * 1024)) //你可以通过自己的内存缓存实现                .memoryCacheSize(2 * 1024 * 1024)                .tasksProcessingOrder(QueueProcessingType.LIFO)//设置图片下载和显示的工作队列排序                .defaultDisplayImageOptions(DisplayImageOptions.createSimple())                .imageDownloader(new BaseImageDownloader(this, 5 * 1000, 30 * 1000)) // connectTimeout (5 s), readTimeout (30 s)超时时间                .writeDebugLogs() // Remove for release app                .defaultDisplayImageOptions(options)                .build();//开始构建        //初始化imageloader;        ImageLoader.getInstance().init(config);    }}

原创粉丝点击