如何在地图上添加视图叠加?

时间:2011-09-19 10:59:23

标签: android google-maps view overlay

我想知道是否有办法扩展叠加层,以便能够在地图上的特定位置显示视图。

如果可能的话,你可以帮我处理代码片段或链接,我在网上看了一下,却找不到真正有用的东西。

2 个答案:

答案 0 :(得分:1)

你可以这样创建RelativeLayout。

这是一个例子。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <com.google.android.maps.MapView
        xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapview"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        android:clickable="true" android:apiKey="you key" />

    <ImageView android:id="@+id/cur_loc" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:src="@drawable/cur_loc"
            android:visibility="gone" android:padding="0dip"
            android:layout_margin="0dip" android:background="#ffffff" />

    <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/track_dist_linear"
        android:background="#ffffff" android:orientation="vertical">
        <TextView android:id="@+id/txt_msg" android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:textColor="#000000" android:text="Distance 0 km"/>
        <TextView android:id="@+id/speed_msg" android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:textColor="#000000" android:text="Speed 0 kmph \ntime 0 sec"/>
    </LinearLayout>
    <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/track_dist_linear">
        <Button android:id="@+id/track_btn" android:text="Start" android:layout_width="wrap_content" 
        android:layout_height="wrap_content"/>
        <Button android:id="@+id/show_track_btn" android:text="Show" android:layout_width="wrap_content" 
        android:layout_height="wrap_content"/>
    </LinearLayout>
</RelativeLayout>

答案 1 :(得分:0)