如何在mapview中显示“固定位置”叠加?

时间:2011-11-11 19:23:10

标签: android

我只想在MapView中显示固定位置的图标。如果它已经修复,那么叠加将会发生,但是当用户移动地图时叠加的问题就会移动。但我需要修复此图标。

1 个答案:

答案 0 :(得分:3)

您可以将MapView和ImageView封装在RelativeLayout中,就像这样

<?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>