This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
list.addOnItemTouchListener( | |
object : RecyclerView.SimpleOnItemTouchListener() { | |
var initialX = 0f | |
var initialY = 0f | |
override fun onInterceptTouchEvent(rv: RecyclerView, e: MotionEvent): Boolean { | |
if (e.action == MotionEvent.ACTION_DOWN) { | |
rv.parent.requestDisallowInterceptTouchEvent(true) | |
initialX = e.rawX | |
initialY = e.rawY | |
} else if (e.action == MotionEvent.ACTION_MOVE) { | |
val xDiff = abs(e.rawX - initialX) | |
val yDiff = abs(e.rawY - initialY) | |
if (yDiff > xDiff) { | |
rv.parent.requestDisallowInterceptTouchEvent(false) | |
} | |
} | |
return super.onInterceptTouchEvent(rv, e) | |
} | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment