沈斌
2018-05-16 6c88cd89b3f3d6d140f6eb0cec20e2f57a7ff563
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";
}