我想编辑它以便在我需要的地图中添加一些 TextView。例如,右上角的文本视图具有位置准确性的实时信息。
如果您知道一种无需修改 google maps api for android 的方法,请告诉我。
我已阅读该服务的使用条款,但如果我可以修改地图 jar,我没有得到明确的答案。
我想编辑它以便在我需要的地图中添加一些 TextView。例如,右上角的文本视图具有位置准确性的实时信息。
如果您知道一种无需修改 google maps api for android 的方法,请告诉我。
我已阅读该服务的使用条款,但如果我可以修改地图 jar,我没有得到明确的答案。
您无需修改地图 API。您需要做的就是使用 RelativeLayout 作为布局的根容器,并向其中添加 MapView 和 TextView 以显示您想要的文本。
这是一个示例代码
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/mapview"
android:layout_alignParentRight="true"/>
</RelativeLayout>