Skip to content

Instantly share code, notes, and snippets.

@XjojoX1989
Created April 5, 2020 09:20
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 XjojoX1989/7400b392b27f9216adaf9d1cbd512a91 to your computer and use it in GitHub Desktop.
Save XjojoX1989/7400b392b27f9216adaf9d1cbd512a91 to your computer and use it in GitHub Desktop.
public boolean onInterceptTouchEvent(MotionEvent event) {
int action = event.getAction();
if (action == MotionEvent.ACTION_DOWN) {
return false;
} else {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment