Skip to content

Instantly share code, notes, and snippets.

@le0nidas
Created May 9, 2021 11:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save le0nidas/3f37f1954579a7744c888903ee1ab78d to your computer and use it in GitHub Desktop.
Save le0nidas/3f37f1954579a7744c888903ee1ab78d to your computer and use it in GitHub Desktop.
list.addOnItemTouchListener(
object: RecyclerView.SimpleOnItemTouchListener() {
override fun onInterceptTouchEvent(rv: RecyclerView, e: MotionEvent): Boolean {
if (e.action == MotionEvent.ACTION_DOWN) {
rv.parent.requestDisallowInterceptTouchEvent(true)
}
return super.onInterceptTouchEvent(rv, e)
}
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment