加入 OverlayItems
在从 MapActivity
类派生的类中,我想用一条线连接两个 OverlayItems
。到目前为止,我已尝试重写MapView
的onDraw
方法,但这是不可能的,因为该方法被声明为final
。
我该怎么办?
预先感谢您花时间帮助我。
In a class derived from the MapActivity
class, I want to join two OverlayItems
with a line. So far, I have tried to override the MapView
's onDraw
method but it is not possible because this method is declared final
.
How can I do?
Thanks in advance for the time you will spend trying to help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
Overlay
中覆盖draw()
并绘制您想要的内容。Override
draw()
in yourOverlay
and draw what you wish.