1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | package cc.shinichi.library.view.listener 
 |    
 |  import android.app.Activity 
 |  import android.view.View 
 |    
 |  /** 
 |   * @author 工藤 
 |   * @email qinglingou@gmail.com 
 |   * cc.shinichi.library.view.listener 
 |   * create at 2018/12/19  16:24 
 |   * description: 
 |   */ 
 |  interface OnBigImageLongClickListener { 
 |      /** 
 |       * 长按事件 
 |       */ 
 |      fun onLongClick(activity: Activity, view: View, position: Int): Boolean 
 |  } 
 |  
  |