管灌系统巡查员智能手机App
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cc.shinichi.library.view.listener
 
import android.app.Activity
 
/**
 * @author 工藤
 * @email qinglingou@gmail.com
 * cc.shinichi.library.view.listener
 * create at 2018/12/19  16:23
 * description: 下载结果回调
 */
abstract class OnDownloadListener {
    abstract fun onDownloadStart(activity: Activity, position: Int)
    abstract fun onDownloadSuccess(activity: Activity, position: Int)
    abstract fun onDownloadFailed(activity: Activity, position: Int)
}