views:

83

answers:

1

We developed a Swing GUI system running on PC, and the boss wants it to run on a special tablet PC too. Does anyone know what else we can do to achieve it? How to make a Swing GUI support touch operation?

The touch-support driver of the tablet PC is necessary, of course.

+2  A: 

Most touch screens convert touches to mouse events. If yours does so as well you can simply use java.awt.event.MouseListener.

joe
Got it! Thank you !
pianyao