0

我有一个小问题。我的应用程序有一个表面视图并显示相机预览。现在我想要一个地图叠加层。此覆盖应显示在显示屏的一角,并显示用户的当前位置。

这是我想要的预览图像: 全分辨率图像

我的问题是,我不知道如何在另一个上显示视图/布局。我现在拥有的是 main.xml:

<?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" >
    <LinearLayout 
        android:id="@+id/CameraPreviewLayout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >
        <FrameLayout
             android:id="@+id/SurfaceViewLayout"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:src="@drawable/ic_launcher" />
    </LinearLayout>
    <LinearLayout
        android:id="@+id/MapsLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:clickable="false"
        android:orientation="vertical" >
        <fragment
            android:id="@+id/Map"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            class="com.google.android.gms.maps.MapFragment" />
     </LinearLayout>
</RelativeLayout>

但这显示了我的预览布局,带有地图布局的 + 和 - 按钮。

有可能得到这样的东西吗?因为我现在正在寻找一段时间,但什么也没找到。

希望有人有想法。

问候

更新: 这是我的新main_activity.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
        <FrameLayout
            android:id="@+id/SurfaceViewLayout"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/ic_launcher" />
        <fragment
            android:id="@+id/Map"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            class="com.google.android.gms.maps.MapFragment" />
</RelativeLayout>
4

0 回答 0