当我按下“选择”或箭头按钮时,ActionListener 没有收到任何操作执行事件

发布于 2024-12-29 12:31:25 字数 603 浏览 1 评论 0原文

我不明白为什么它没有收到操作事件。我按下箭头并选择按钮,但仍然没有任何内容输出到控制台。

import com.sun.lwuit.events.*;
public class LWUITAPP extends javax.microedition.midlet.MIDlet implements ActionListener, CommandListener {

        Form form = new Form();
        form.show();
        form.addComponent(list);

        list.setModel(model);
}



public void pauseApp() {
}

public void destroyApp(boolean unconditional) {
}

public void actionPerformed(ActionEvent evt) {
    System.out.println ("hii!");
    System.out.println(evt.getKeyEvent());
}

public void commandAction(Command c, Displayable d) {

}
}

I can't figure out why it isn't receiving the action event. I push the arrows and select button and still nothing gets output to the console.

import com.sun.lwuit.events.*;
public class LWUITAPP extends javax.microedition.midlet.MIDlet implements ActionListener, CommandListener {

        Form form = new Form();
        form.show();
        form.addComponent(list);

        list.setModel(model);
}



public void pauseApp() {
}

public void destroyApp(boolean unconditional) {
}

public void actionPerformed(ActionEvent evt) {
    System.out.println ("hii!");
    System.out.println(evt.getKeyEvent());
}

public void commandAction(Command c, Displayable d) {

}
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

说谎友 2025-01-05 12:31:25

您忘记将 keyListener 放入 Form 中。您必须将此 addKeyListener/addGameKeyListener 附加到Form。这应该有效。

You forget to put the keyListener to the Form. You must put this addKeyListener/addGameKeyListener attached to the Form. This should work.

千柳 2025-01-05 12:31:25

好吧:我会尽力保留它 SSCCE。

为了注册事件,您必须添加行...

Form form = new Form();
> form.addCommandListener(this)
form.show()

...以便通过您的actionPerformed 方法监听事件。

作为我的证明,请查看 LWUIT API 上的此页面。
https:// /lwuit.java.net/javadocs/com/sun/lwuit/Form.html#addCommandListener(com.sun.lwuit.events.ActionListener)

有趣的是,addCommandListener() 方法的实现取代了 Swing 应用程序中通常使用的 addActionListener() 方法。

All right: I will try to keep it SSCCE.

In order to have events registered, you must add the line...

Form form = new Form();
> form.addCommandListener(this)
form.show()

...in order to listen to events through your actionPerformed method.

As my proof, take a look at this page on the LWUIT API.
https://lwuit.java.net/javadocs/com/sun/lwuit/Form.html#addCommandListener(com.sun.lwuit.events.ActionListener)

Interestingly, the addCommandListener() method is implemented in place of where addActionListener() would normally be used in the case of Swing applications.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文