我正在使用JList运行一个简单的JFrame。
我遇到了像这个家伙一样的问题> Java getClickCount on touchscreen
我知道它已经发布但没有答案。
jList.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
System.out.println("MouseClick: "+e.getClickCount());
if (e.getClickCount() == 2) {
答案 0 :(得分:1)
以下代码正在运作..
public class MainTest extends JPanel {
public MainTest() {
addMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent me) {
System.out.println(me.getClickCount());
}
});
}
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.getContentPane().add(new MainTest());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(200, 200);
frame.setVisible(true);
}
}