我应该如何处理J2ME中的关键事件?
我应该如何处理 J2ME 中 CustomItem
的按键事件?
How should I handle the key events for CustomItem
in J2ME?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我应该如何处理 J2ME 中 CustomItem
的按键事件?
How should I handle the key events for CustomItem
in J2ME?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
这是完整的示例
Here is the complete example
正如文档所说。
CustomItem 使用示例
As the documentation says.
Example of CustomItem usage
我得到了解决方案。我们应该在CustomItem的派生类中重写CustomItem的“protected void keyPressed(int key)”方法。
I got the solution. We should override the method "protected void keyPressed(int key)" of CustomItem in the derived class of CustomItem.