Skip to content

Instantly share code, notes, and snippets.

@tcw165
Created March 20, 2017 15:39
Show Gist options
  • Save tcw165/8b974d4a3a334fb068dc64213e1e1920 to your computer and use it in GitHub Desktop.
Save tcw165/8b974d4a3a334fb068dc64213e1e1920 to your computer and use it in GitHub Desktop.
private void cancelSelfTouchEvent(MotionEvent event) {
final MotionEvent canceledEvent = MotionEvent.obtain(event);
canceledEvent.setAction(MotionEvent.ACTION_CANCEL);
onTouchEvent(canceledEvent);
canceledEvent.recycle();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment