好的。到目前为止,我所拥有的是一个带有谷歌地图的 Android 应用程序,我在上面放置了一堆图标,当点击这些图标时,会创建一个带有一些文本的弹出窗口。有没有办法在该弹出窗口上放置一个按钮?If this is not possible, is there some way to make a button appear when an icon on Google Maps is selected?
如果您想知道,我现在使用的代码如下所示。
itemizedOverlay.addOverlay(new OverlayItem(point, title, text));
//actually a whole bunch of OverlayItems, each with their own location and text
//but this is the general shape of it.
mapOverlays.add(itemizedOverlay);
编辑:
GoogleMaps 应用程序的不同版本(在模拟器版本中检查自己)使用了不同类型的弹出窗口。第一个弹出窗口简单显示位置的标题(Android 2.3.3)。
第二个弹出窗口显示标题和箭头指示符。(安卓 4.0.3)
足够有趣:我注意到两个弹出窗口都是可点击的,并启动了另一个显示该位置详细信息的活动。