2

我创建了一个在 Windows7 操作系统的桌面上运行良好的 java 应用程序。我尝试在 Windows 8 环境中运行该程序。我使用的设备是平板电脑。Java 应用程序已安装并确实运行。但问题在于双击。该程序具有类似于双击和选择项目的功能。但是在平板电脑中,您必须双击该平板电脑。但是双击该项目将无济于事。它只会在第一次单击时突出显示,但在双击它时,什么也没有。Windows 8 平板电脑中关于这个的问题可能是什么。这与 Windows 8 中的 java 有关吗?

非常感谢任何想法。谢谢

[更新:] 事件代码:

    private void jListItemsMouseClicked(java.awt.event.MouseEvent evt) {                                           
        System.out.println("Product Clicked 1");
        if (evt.getClickCount() == 2) {

            m_ReturnProduct = (ItemsInfo) jListItems.getSelectedValue();
            if (m_ReturnProduct != null) {
                buttonTransition(m_ReturnProduct);
            }
        }
    }   
4

1 回答 1

2

看来,Windows 8 平板电脑的 MultiClickInterval 较低。

您可以使用以下行获取该值: Toolkit.getDefaultToolkit().getDesktopProperty("awt.multiClickInterval")

我的解决方法是,您使用 Timer 和 TimerTask 编写自己的 MultiClickInterval:

您需要一个静态Map<java.awt.Component, Integer>来保存每个Component.

public static final Map<java.awt.Component, Integer> MULTI_CLICK_MAP = new HashMap<java.awt.Component, Integer>();

你还需要一个java.util.Timer

private Timer timer = new Timer();

在方法中,您增加组件的计数器。当它为 2 时,您执行代码。TimerTask 将在定义的时间后重置计数器。

您的方法将如下所示:

private void jListItemsMouseClicked(java.awt.event.MouseEvent evt) { 
    Component comp = evt.getComponent();

    //added the component to the map or increase the counter
    if(MULTI_CLICK_MAP.containsKey(comp)) {
        MULTI_CLICK_MAP.put(comp, 1);
    } else {
        int oldCounter = MULTI_CLICK_MAP.get(comp);

        MULTI_CLICK_MAP.put(comp, oldCounter + 1);
    }

    //check for double click
    if (MULTI_CLICK_MAP.get(comp) == 2) {
        MULTI_CLICK_MAP.remove(comp);

        //here is your logic
        m_ReturnProduct = (ItemsInfo) jListItems.getSelectedValue();
        if (m_ReturnProduct != null) {
            buttonTransition(m_ReturnProduct);
        }
    } 
    else {

        //start the TimerTask that resets the counter. this will reset after 1 second (1000 milliseconds)
        this.timer.schedule(new ClickReseter(comp), 1000);
    }

} 

ClickReset 是一个简单的 TimerTask,它包含Component

public class ClickReseter extends TimerTask {

    private Component component;

    public ClickReseter(Component component)
    {
        this.component = component;
    }

    @Override
    public void run()
    {
        MULTI_CLICK_MAP.remove(component);

    }

}

我希望这对你有用。它没有测试它!如果您有任何问题随时问。

于 2013-09-05T11:33:38.800 回答