张海江
2017-08-11 51f8633b379efab41a8b19a375d5e41785a15ee6
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.moral.yunfushao.imageload;
 
/**
 * Created by haijiang on 2017/4/21.
 */
 
public class GlideCatchConfig {
    // 图片缓存最大容量,150M,根据自己的需求进行修改
    public static final int GLIDE_CATCH_SIZE = 150 * 1000 * 1000;
 
    // 图片缓存子目录
    public static final String GLIDE_CARCH_DIR = "image_catch";
}