我可以向 Android 地图中的叠加层添加视图吗?
有没有办法将视图添加到 Android 地图中的 ItemizedOverlays 中?如果有办法,请告诉我如何做..谢谢..
每当我点击一个标记时,我想用图像、文本和按钮显示它的信息..我在这个社区尝试了很多答案,但它们都没有符合我的要求。所以我想在叠加层中添加一个包含图像、文本和按钮的视图,这样即使地图被缩放或移动,它也能正常工作。
Is there a way to add views to ItemizedOverlays in android maps? If there is a way please tell me how to.. thank you..
When ever i tap on a marker i want to display its info with images, text and buttons.. I tried many answers in this community, but they all do not match my requirement. So i want to add a view with images, text and buttons to the overlay so that it will work good even when the maps are zoomed or moved..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 onTap 方法中执行此操作。
单击“查看”按钮后,只需使用图像和按钮调用您的活动......
希望它对你有用...
You can do it in onTap method.
On clicking on view button just call ur activity with images and buttons....
Hope it will useful for you...
我这样做:
1)将地图视图添加到RelativeLayout
2)将我想要放置在覆盖层上的视图添加到相同的RelativeLayout
3) 重写Overlay的“draw”方法(使用扩展Overlay的CustomOverlay类)。在方法内部,调用重新定位视图的处理程序
I do this:
1) Add the mapview into a RelativeLayout
2) Add the View I want to place over the overlay into the same RelativeLayout
3) Override the "draw" method of the Overlay (using a CustomOverlay class that extends Overlay). Inside the method, call a handler that repositions the View