欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Glide4.0.0本地缓存配置

程序员文章站 2022-06-04 16:18:43
...
    compile 'com.github.bumptech.glide:glide:4.0.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0'

Glide4.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);
相关标签: imageview 缓存