Android 谷歌地图标记
我在 Android 中显示的谷歌地图上有几个标记,我希望在单击特定标记时显示更多信息(例如 - 一些文本、图片等信息)。有人可以指导我如何实施这一点吗?
i have several markers on the google map displayed in android, i wish to display more information (information such as - some text,a picture) when a particular marker is clicked. could some one please guide me how can i go about implementing that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
覆盖
ItemizedOverlay
中的onTap()
并执行您想做的任何操作。 请参阅此处查看显示Toast 的示例项目
当点击某个项目时。
Override
onTap()
in yourItemizedOverlay
and do whatever you want. See here for a sample project that displays aToast
when an item is tapped.CommonsWare 说的话。
或者查看此页面: http://developer.android.com/resources /tutorials/views/hello-mapview.html
另外,如果您要显示文本和图像,我建议您启动一个新的活动,这与仅显示小文本的页面上的应用程序不同。
What CommonsWare said.
Or check out this page: http://developer.android.com/resources/tutorials/views/hello-mapview.html
Also, I would recommend launching a new Activity if you're going to display text and an image, unlike the application at the page where only a small text is displayed.