5

我必须创建一个如下所示的 GUI。我使用了 LinearLayout 并在它周围创建了边框。我必须在边框之间插入标题文本。任何想法如何做到这一点。在此处输入图像描述

4

3 回答 3

3
<RelativeLayout>)
    <LinearLayout with border>
    <TextView with white background>
</RelativeLayout>

TextView 应该出现在带有白色背景的覆盖边框的线性布局上方。您可以使用边距定位它。

于 2012-09-17T09:19:44.193 回答
1

使用相对布局作为父级,并将所有线性布局代码放在相对布局下。然后在相对布局中添加 textview 并提到 textview 位于顶部并给出marign。

  <RelativeLayout>
     <TextView android:layout_alignParentTop="true"
      android:layout_margin="20dip/>
     <LinearLayout>
                // here is your linear layout
     </LinearLayout>
   </RelativeLayout>
于 2012-09-17T09:21:40.083 回答
0

使用RelativeLayout重叠线,你不能在Linearlayout上这样做

于 2012-09-17T09:20:54.590 回答