我有一个RelativeLayout,其中是一个MapView。我现在正在尝试在这个MapView上面设置一个LinearLayout,所以我的意思是在Top上,但MapView将填满整个屏幕。
问题是现在显示了MapView,但ID为“map_zoomcontrols”的 LinearLayout 是隐藏。
有没有办法将LinearLayout带到前面?
<?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
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_zoomcontrols"
android:layout_width="200dp"
android:layout_height="150dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="#fff"
android:gravity="center_horizontal">
<Button
android:id="@+id/map_zoom_out"
android:layout_width="70dp"
android:layout_height="30dp"
android:text="Out"
android:textColor="#fff"
android:background="#fff"
/>
<Button
android:id="@+id/map_zoom_in"
android:layout_width="70dp"
android:layout_height="30dp"
android:text="In"
android:textColor="#fff"
android:background="@drawable/button_shape_selector"
/>
</LinearLayout>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:apiKey="..."/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/bottom_ll"
android:orientation="horizontal"
android:layout_width="400dp"
android:layout_height="45dp"
android:gravity="center_horizontal"
android:background="@drawable/gradient"
android:layout_alignParentBottom="true"
>
<Button android:id="@+id/btn_bottom"
android:layout_width ="120dp"
android:layout_height="35dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:text="Bottom"
android:textColor="#fff"
android:background="@drawable/button_shape_selector"/>
</LinearLayout>
答案 0 :(得分:4)
将LinearLayout
放在 {x}布局中的MapView
控件之后:
<?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">
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:apiKey="..."/>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map_zoomcontrols"
android:layout_width="200dp"
android:layout_height="150dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="#fff"
android:gravity="center_horizontal">
<Button
android:id="@+id/map_zoom_out"
android:layout_width="70dp"
android:layout_height="30dp"
android:text="Out"
android:textColor="#fff"
android:background="#fff"
/>
<Button
android:id="@+id/map_zoom_in"
android:layout_width="70dp"
android:layout_height="30dp"
android:text="In"
android:textColor="#fff"
android:background="@drawable/button_shape_selector"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/bottom_ll"
android:orientation="horizontal"
android:layout_width="400dp"
android:layout_height="45dp"
android:gravity="center_horizontal"
android:background="@drawable/gradient"
android:layout_alignParentBottom="true"
>
<Button android:id="@+id/btn_bottom"
android:layout_width ="120dp"
android:layout_height="35dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:text="Bottom"
android:textColor="#fff"
android:background="@drawable/button_shape_selector"/>
</LinearLayout>