如何检测 Palm Pre 手势区域中的轻击?
正在玩我的 Palm Pre 手机。我想检测用户在手势区域(屏幕正下方的区域)中的点击。我该怎么做?
我在框架 API 或服务 API 中没有发现任何明显的东西。
Playing with my Palm Pre phone. I want to detect the user tapping in the gesture area (the area directly below the screen). How do I do that?
I haven't found anything obvious in the framework API's or service API's.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
手势区域被视为点击和按键事件上的
metaKey
修饰符。监听页面上任意位置的Mojo.Event.tap
,将手指放在手势区域上,然后点击您正在监听的位置。该事件应将event.metaKey
设置为true
。The gesture area is treated as the
metaKey
modifier on tap and key events. Listen forMojo.Event.tap
anywhere on the page, rest your finger on the gesture area, and then tap where you are listening. The event should haveevent.metaKey
set totrue
.我找到了此页面,其中描述了使用插件开发工具包 (PDK) 中的 SDL_PollEvent 方法捕获手势区域输入:
http://developer.palm.com/index.php?option=com_content&view=article&id=1980&Itemid=337 #GestureAreaInput
不幸的是,我还没弄清楚如何使用PDK......
I found this page, which describes capturing gesture-area inputs using the SDL_PollEvent method in the Plug-in Development Kit (PDK):
http://developer.palm.com/index.php?option=com_content&view=article&id=1980&Itemid=337#GestureAreaInput
Unfortunately, I haven't figured out how to use the PDK yet...
您可以检查 mojo-keydown 和 -keyup - 代码 57575。尝试 API 示例、输入、按键部分。
You can check mojo-keydown and -keyup - code 57575. Try the APIs sample, Input, Key Presses section.