Android canvas.drawCircle 上的 OnClick 事件
我想在我的 Android 应用程序上的谷歌地图中显示几个圆圈。
我希望当用户单击这些圆圈时,它应该根据单击的圆圈显示一个吐司。
我正在使用 code.google.android.maps.overlay
在特定纬度/经度上显示圆圈。
我无法找到解决方案。
I want to display few circles in google maps on my android application.
I want that when user clicks these circle it should show a toast based on the circle clicked.
I am using code.google.android.maps.overlay
to display circle on a specific lat/long.
I am unable to find a solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
扩展 ItemizedOverlay 类,
这是一个处理覆盖项的类。
在那里您可以实现 onTap() 方法并显示 Toast。
在您的 MapActivity 中,您只需创建此 MapitemizedOverlay 并添加您的项目即可。
Extend the ItemizedOverlay class
this is a class which handles overlayitems.
There you can implement the onTap()-Method and show Toasts.
In your MapActivity you simply create this MapitemizedOverlay and add your items.