|
|
|
@ -7,7 +7,7 @@ import kotlin.math.roundToInt
|
|
|
|
|
|
|
|
|
|
|
|
class GridTouchHelper(
|
|
|
|
class GridTouchHelper(
|
|
|
|
context: Context,
|
|
|
|
context: Context,
|
|
|
|
private val listener: OnGridTouchListener
|
|
|
|
private val listener: OnGridTouchListener,
|
|
|
|
) : GestureDetector.SimpleOnGestureListener() {
|
|
|
|
) : GestureDetector.SimpleOnGestureListener() {
|
|
|
|
|
|
|
|
|
|
|
|
private val detector = GestureDetector(context, this)
|
|
|
|
private val detector = GestureDetector(context, this)
|
|
|
|
@ -16,7 +16,7 @@ class GridTouchHelper(
|
|
|
|
private var isDispatching = false
|
|
|
|
private var isDispatching = false
|
|
|
|
|
|
|
|
|
|
|
|
init {
|
|
|
|
init {
|
|
|
|
detector.setIsLongpressEnabled(false)
|
|
|
|
detector.setIsLongpressEnabled(true)
|
|
|
|
detector.setOnDoubleTapListener(this)
|
|
|
|
detector.setOnDoubleTapListener(this)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ -46,7 +46,7 @@ class GridTouchHelper(
|
|
|
|
}
|
|
|
|
}
|
|
|
|
2 -> AREA_RIGHT
|
|
|
|
2 -> AREA_RIGHT
|
|
|
|
else -> return false
|
|
|
|
else -> return false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
|
|
|
return true
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|