riku
2020-08-21 44b39e5f10c9ad724e2daa26183bac3d1fc1e349
1
2
3
4
5
6
7
8
9
10
11
12
package cn.flightfeather.thirdapp.util.photo;
 
import java.io.File;
import java.util.List;
 
/**
 * 压缩完成监听接口
 */
public interface OnCompressListener {
 
    void onCompressed(List<File> files);
}