Is there any event listener for touchpad in java? I am designing an application which counts the number of taps entered by the user using a laptop's touchpad.
Asked
Active
Viewed 1,860 times
1
-
Does this help? http://stackoverflow.com/questions/11623777/how-to-implement-a-java-swing-application-to-touch-screen – Daniel Kaplan Oct 25 '13 at 20:55
-
2Are these not mapped to mouse clicks? You can get events for each click, or double/triple/quadruple clicks. – Peter Lawrey Oct 25 '13 at 20:57
-
MouseListener registers the event if I tap with one finger but if I am tapping a rythm with two fingers, it fails to register the touch event. – Abhishek Anand Oct 25 '13 at 21:10
1 Answers
0
Try using TUIO. There are a number of Java implementations out there.

Nathaniel Jones
- 1,829
- 3
- 29
- 27
-
I am going through the docs for implementing TUIO. I will update with my findings. Thanks. – Abhishek Anand Oct 25 '13 at 21:11