Created
April 25, 2016 23:12
-
-
Save eddieberklee/8410c9db9fb11a52e56f6afa02a6e30f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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