如何使用Android地图通过手势进行缩放(类似iphone)
如何使用Android API像iPhone一样用两指手势放大和缩小地图?
How do you use the Android API to zoom in and out maps with the 2 finger gestures like iPhone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用如下内容重写 MapActivity 的 OnTouchEvent() :
You need to override the MapActivity's OnTouchEvent() with something like this:
Android 目前不正式支持多点触控。 不同的人已经做了一些工作(你的 google 的“android multitouch”和我的一样好),但官方的 android 发行版或 API 中还没有任何内容。
相关博客文章< /a> 刚刚出现在我的 feedreader 中,并提供了更多详细信息。
更新:自 Android API 级别 5< /a>(又名 Android 2.0),Android 确实有多点触控 API。 当然,对它的支持是特定于浏览器的。
Android doesn't currently officially support multitouch. There's been some work by various people (Your google for 'android multitouch' is as good as mine), but nothing in the official android distro or APIs yet.
A relevant blog post just showed up in my feedreader with more particulars.
UPDATED: As of Android API Level 5 (aka Android 2.0), Android does have a multi-touch API. Support for it is, of course, browser-specific.