Бо, в принципе, это возможно с оверлеями, но я сделал это, используя материал RelativeLayout
<RelativeLayout
android:id="@+id/headerlayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
>
<Button android:id="@+id/amap_back_btn" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentTop="true"
android:layout_alignParentLeft="true" android:text="Back">
</Button>
</RelativeLayout>
<MapViewActivity
xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mapview"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:clickable="true" android:apiKey="your map key"
android:layout_below="@+id/headerlayout"
android:layout_above="@+id/bottomlayout"
/>
Это все Если вы считаете это правильным, не забудьте пометить мой ответ как проверку. С наилучшими пожеланиями, Anup