Search code examples
javascrolllistenertrackpad

Java trackpad 2-finger scroll listener


how can i detect a 2-finger scroll on a laptop trackpad in java? I've been searching google and here but can't find anything on scrolling using a trackpad let alone how to listen for it. any help would be greatly appreciated. thanks.


Solution

  • If this is about listening for user scrolls, you can do it by adding a MouseWheelListener to your control. See How to Write a Mouse-Wheel Listener for more information.

    If this is about detecting specific events from the trackpad and not the mouse, I don't known of any Java feature to implement this.