管灌系统巡查员智能手机App
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cc.shinichi.library.view.listener
 
import android.app.Activity
import android.view.View
 
/**
 * 原图加载百分比接口
 *
 * @author 工藤
 * @email qinglingou@gmail.com
 */
interface OnOriginProgressListener {
    /**
     * 加载中
     */
    fun progress(activity: Activity, parentView: View, progress: Int)
 
    /**
     * 加载完成
     */
    fun finish(activity: Activity, parentView: View)
}