问题
Several multitouch drawing applications have implemented features that prevent interference when a user rests their palm on the screen while drawing.
How do they filter out touch events from the palm of the hand, but allow the correct input from the drawing finger or stylus?
回答1:
Ignore any multi-touch inputs that are close to each other, only taking the data from the single point (the finger).
回答2:
Take the top y component from the group of touches.
来源:https://stackoverflow.com/questions/4302515/how-do-you-ignore-the-palm-of-the-hand-when-doing-multitouch-drawing