Symbian、Java ME:确定手机是否有触摸屏

发布于 2024-10-03 06:08:30 字数 99 浏览 6 评论 0原文

有没有办法从代码中知道手机是否有触摸屏?

我需要它来像 if (PhoneHasTouchScreen) enable_something()

is there a way to know from code if phone has touch screen or not?

I need it for smth like if (PhoneHasTouchScreen) enable_something()

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

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

发布评论

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

评论(1

万人眼中万个我 2024-10-10 06:08:30

也许调用 Canvas.hasPointerMotionEvents()。请记住,Java ME 中有两种类型的触摸屏;使用常用样式指针/软键事件的触摸屏,以及触摸屏幕时返回指针坐标的样式。对于您的应用程序的所有用处,请考虑前者根本不是触摸屏。

Perhaps call Canvas.hasPointerMotionEvents(). Bear in mind that there are two types of touch screen in Java ME; a touch screen that uses the usual style pointer/softkey events, and the style that returns pointer co-ordinates when you touch the screen. For all usefulness on your app, consider the former to not be touch screen at all.

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