For implementation of onClick function which approach is better?
- Saving touch start / touch up coordinates and processing this values for closeness? Like, if starting point and up point close each other, let the click action start.
- Saving touch start / touch up time difference and processing this value? Like, if touch starting time and up time difference less than a value, let the click action start.
And why?