如何使用 Java ME 检测诺基亚 S40 设备的中央按键?
我对 j2me 比较陌生。我喜欢实现一个应该检测 S40 设备中央密钥的应用程序。我使用这个代码
if(keyCode==-5&&c==2) {
c=1;
repaint();
} else {
c=2;
repaint();
}
,它仅在模拟器上工作,但在 S40 设备上不起作用。有谁知道如何解决这个问题。
I am fresher in j2me. I like to implement an application that should detect central key of the S40 device.I use this code
if(keyCode==-5&&c==2) {
c=1;
repaint();
} else {
c=2;
repaint();
}
it work only on simulator and but not work in S40 device.Does anyone know how to solve this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是诺基亚 s40 手机的关键代码,
有关详细信息,请参阅这篇文章,Canvas KeyCodes。
This is the key code for nokia s40 mobiles,
For more info look at this article, Canvas KeyCodes.