1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package cc.shinichi.library.glide.progress
|
| /**
| * @author 工藤
| * @email qinglingou@gmail.com
| */
| interface OnProgressListener {
| fun onProgress(
| url: String?,
| isComplete: Boolean,
| percentage: Int,
| bytesRead: Long,
| totalBytes: Long
| )
| }
|
|