我有一个RelativeLayout
,这个 Layout 有两个孩子,一个是 a MapView
,另一个RelativeLayout
是包含一个按钮的 a 。
我希望它看起来像那样
但是我的透明框(a RelativeLayout
)总是显示在地图的顶部。
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.google.android.maps.MapView
android:id="@+id/mapView"/>
<test.project.TransparentPanel
android:layout_width="fill_parent"
android:layout_width="fill_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me!"/>
</test.project.TransparentPanel>
</RelativeLayout>
(我在代码中遗漏了一些东西)