Glide4.0.0本地缓存配置

来源:互联网 发布:足球角球数据库 编辑:程序博客网 时间:2024/06/09 11:46
    compile 'com.github.bumptech.glide:glide:4.0.0'    annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0'

这里写图片描述

        ImageView imageView=new ImageView(this);        RequestOptions options =new  RequestOptions();        options.diskCacheStrategy(DiskCacheStrategy.ALL);        options.centerCrop();        Glide.with(this).load("http://i1.ciimg.com/598337/ec9c54bc2d231e6dt.jpg").apply(options).into(imageView);