lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.lzf.easyfloat.interfaces
 
import android.view.MotionEvent
 
/**
 * @author: liuzhenfeng
 * @function: 系统浮窗的触摸事件
 * @date: 2019-07-11  11:06
 */
internal interface OnFloatTouchListener {
 
    fun onTouch(event: MotionEvent)
}