Skip to content

Instantly share code, notes, and snippets.

@eddieberklee
Created April 25, 2016 23:12
Show Gist options
  • Save eddieberklee/8410c9db9fb11a52e56f6afa02a6e30f to your computer and use it in GitHub Desktop.
Save eddieberklee/8410c9db9fb11a52e56f6afa02a6e30f to your computer and use it in GitHub Desktop.
boolean isSingleTap = Math.abs(mStartingY - y) < Etils.dpToPx(5)
&& Math.abs(mStartingX - x) < Etils.dpToPx(5);
if (isSingleTap) {
shouldClose = isOpen;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment