1
我只是想顯示在MapView中的固定位置的圖標。如果覆蓋圖是固定的,覆蓋圖將會執行,但覆蓋圖的問題是隨着用戶移動地圖而移動。但我需要修復此圖標。如何在mapview中顯示「固定位置」疊加層?
我只是想顯示在MapView中的固定位置的圖標。如果覆蓋圖是固定的,覆蓋圖將會執行,但覆蓋圖的問題是隨着用戶移動地圖而移動。但我需要修復此圖標。如何在mapview中顯示「固定位置」疊加層?
您可以附上您的MapView和RelativeLayout的內部的ImageView的,像這樣的
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<MapView
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="X" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:src="@drawable/icon" />
</RelativeLayout>