Part of my Layout is shown below, but the Button shows up above the MapView and NOT as expected "below" the map. How can I fix this?
<RelativeLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:id="@+id/mapview1" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:clickable="true"
android:apiKey="0i4xk7rTGI6b6ggDrC9hOYCbOd9julMg_DG79cg" />
<Button android:id="@+id/btnBanner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text = "text"
android:layout_below="@+id/mapView1"
/>