哪些 Android 设备/版本组合支持/不支持浏览器中的多点触控手势?
我正在实现在 Android 应用程序的 openLayers 中使用多点触控的可能性,即使对于不支持浏览器多点触控的 Android 版本也是如此。因此,我需要区分支持和不支持的设备/Android 版本。我需要这些信息来应用黑客技术来区分向各个设备提供哪些功能。
是否存在提及多点触控支持的设备/版本列表?或者是否有一种方法可以在运行时检测浏览器多点触控支持(无需显式用户交互)?
I'm implementing the possibility to use multi-touch in openLayers in an Android app even for Android versions that do not support browser multi-touch. Therefore, I need to distinguish between those devices/Android versions that support and those that don't. I need this information to apply a hack to distinguish what functionality to provide to the respecitve devices.
Does there exist a list of devices/versions mentioning multi-touch support? Or is there a method to detect browser multi-touch support during runtime (without explicit user interaction)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要使用 2.x 设备在应用程序的 WebView 上重新启用多点触控,您可以包含 WebView MultiTouch Polyfill 在你的项目中。
为了详细说明您提出的问题,我已经开始这个“RFC-alike”条目,以便 检测 webview 可用的触摸次数。我所描述的方法是一个未经证实的概念,并且将是我最后的实施方案此类信息在网络视图上不可用。
希望得到一些评论或澄清,也希望这可以对您有所帮助。
To re-enable multitouch on your applications' WebView with 2.x devices you can include WebView MultiTouch Polyfill in your project.
To elaborate the question you are asking i have started this "RFC-alike" entry in order to detect how many touches are available to the webview. The approach i have described there is an unproven concept and would be my last-resort implementation in case this kind of information is not available on the webview.
Would love to get some comments or clarification and also hope, this may somehow help you.
我见过的最接近的是 PPK 的表格这里。
About the closest I've seen would be PPK's tables here.