Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何以编程方式在 mapview 上用地址膨胀 textview?
注意:我不需要文本视图 onCLick/onTap。我只想在地图加载后立即显示文本视图。
谢谢,索米亚
如果您的目标是将文本绑定到某个地理坐标,那么如果用户滚动地图,文本会随之移动,您将需要创建一个自定义Overlay来在所需位置绘制文本。
Overlay
另一方面,如果您只是想让一些文本在固定位置(例如,右上角)覆盖地图,请将MapViewa 和 aTextView作为 a 的子级RelativeLayout。将 放置TextView在您想要的位置,并确保它是后面的子项RelativeLayout(例如,在 XML 中,它在文件的后面)。RelativeLayout支持 Z 轴排序,因此TextView将浮动在地图上。
MapView
TextView
RelativeLayout