陈奇
2018-11-15 47f5d71a81a528aff225805d28bf181ce4d6f55d
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";
}