0

我有一个 main.xml 布局,如下所示:

<RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent" >

   <FrameLayout>/FrameLayout>

   <RelativeLayout></RelativeLayout>

   <fragment></fragment>

</RelativeLayout>

现在,我必须将透明片段/布局放在主布局上,这样我就可以在这里放置一些控制器。

4

1 回答 1

0
<FrameLayout
 android:layout_width="match_parent"
 android:layout_height="match_parent" >

   <fragment></fragment>
   <RelativeLayout>
      <!-- Your controllers go here -->
   </RelativeLayout>
 </FrameLayout>

框架 laoyut 将允许相对布局和片段彼此重叠。在片段授予控件可见后添加相对布局。

于 2013-01-09T11:54:11.573 回答